mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 02:08:40 +00:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
namespace phpOMS\Math\Matrix;
|
|
|
|
class Vector extends Matrix {
|
|
public function __constrcut(int $m)
|
|
{
|
|
parent::__construct($m);
|
|
}
|
|
} |