1 | <?php |
||
9 | trait TableTrait |
||
10 | { |
||
11 | protected $tableLinks = null; |
||
12 | |||
13 | public function checkTable() |
||
20 | |||
21 | /** |
||
22 | * @return \ByTIC\Common\Tests\AcceptanceTester; |
||
23 | */ |
||
24 | abstract protected function getTester(); |
||
25 | |||
26 | /** |
||
27 | * @return null |
||
28 | */ |
||
29 | public function getTablePath() |
||
37 | |||
38 | /** |
||
39 | * @return null |
||
40 | */ |
||
41 | public function getTableLinks() |
||
49 | |||
50 | public function initTableLinks() |
||
54 | |||
55 | /** |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getFullLinkPath() |
||
62 | |||
63 | /** |
||
64 | * @return null |
||
65 | */ |
||
66 | public function getLinkPath() |
||
74 | |||
75 | public function clickTableFirstLink() |
||
81 | } |
||
82 |
This check looks for function or method calls that always return null and whose return value is assigned to a variable.
The method
getObject()
can return nothing but null, so it makes no sense to assign that value to a variable.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.