| 1 | <?php |
||
| 25 | final class NavigationTree extends AbstractNavigationNode { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Constructor. |
||
| 29 | */ |
||
| 30 | public function __construct() { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the breadcrumbs. |
||
| 36 | * |
||
| 37 | * @param AbstractNavigationNode $node The navigation node. |
||
| 38 | * @return AsbtractNavigationNode[] Returns the navigation nodes. |
||
| 39 | */ |
||
| 40 | public function getBreadcrumbs(AbstractNavigationNode $node = null) { |
||
| 63 | |||
| 64 | } |
||
| 65 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: