phpOMS/Math/Matrix/Vector.php

10 lines
158 B
PHP

<?php
namespace phpOMS\Math\Matrix;
class Vector extends Matrix {
public function __construct(int $m)
{
parent::__construct($m);
}
}