phpOMS/Math/Matrix/Vector.php

11 lines
154 B
PHP

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