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