Fix phpstan

This commit is contained in:
Dennis Eichhorn 2018-09-22 13:25:00 +02:00
parent 10f392408c
commit 4e68ca4bae
2 changed files with 3 additions and 3 deletions

View File

@ -403,7 +403,7 @@ class Graph
continue; continue;
} }
$diameter = \max($diameter, $this->getFloydWarshallShortestPath($node1, $node2)); $diameter = \max($diameter, $this->getFloydWarshallShortestPath());
} }
} }

View File

@ -267,9 +267,9 @@ abstract class C128Abstract
/** /**
* Validate the barcode string * Validate the barcode string
* *
* @param string $code Barcode string * @param string $barcode Barcode string
* *
* @return void * @return bool
* *
* @since 1.0.0 * @since 1.0.0
*/ */