Fixed some doc problems

This commit is contained in:
Dylan K. Taylor
2017-06-25 12:07:28 +01:00
parent c0377fc63a
commit a365c831a8
28 changed files with 50 additions and 33 deletions

View File

@ -245,7 +245,7 @@ class Vector3{
* @param Vector3 $v
* @param float $x
*
* @return Vector3
* @return Vector3|null
*/
public function getIntermediateWithXValue(Vector3 $v, $x){
$xDiff = $v->x - $this->x;
@ -272,7 +272,7 @@ class Vector3{
* @param Vector3 $v
* @param float $y
*
* @return Vector3
* @return Vector3|null
*/
public function getIntermediateWithYValue(Vector3 $v, $y){
$xDiff = $v->x - $this->x;
@ -299,7 +299,7 @@ class Vector3{
* @param Vector3 $v
* @param float $z
*
* @return Vector3
* @return Vector3|null
*/
public function getIntermediateWithZValue(Vector3 $v, $z){
$xDiff = $v->x - $this->x;