1 | <?php |
||
22 | class TestCase extends WebTestCase |
||
23 | { |
||
24 | /** |
||
25 | * @var Application |
||
26 | */ |
||
27 | protected $app; |
||
28 | |||
29 | /** |
||
30 | * Set up unit. |
||
31 | */ |
||
32 | public function setUp() |
||
37 | |||
38 | /** |
||
39 | * @return Application |
||
40 | */ |
||
41 | public function createApplication() |
||
45 | |||
46 | /** |
||
47 | * Returns the test database connection. |
||
48 | * |
||
49 | * @return PHPUnit_Extensions_Database_DB_IDatabaseConnection |
||
50 | */ |
||
51 | protected function getConnection() |
||
59 | |||
60 | /** |
||
61 | * Returns the test dataset. |
||
62 | * |
||
63 | * @return PHPUnit_Extensions_Database_DataSet_IDataSet |
||
64 | */ |
||
65 | protected function getDataSet() |
||
81 | } |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.