mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fix mistake in path.
Remove incorrectly added file.
This commit is contained in:
parent
d43e0aa0db
commit
7c4b7a2cbe
2 changed files with 2 additions and 17 deletions
|
@ -138,7 +138,8 @@ class PhpReaderTest extends CakeTestCase {
|
|||
PHP;
|
||||
$file = $this->path . 'test.php';
|
||||
$contents = file_get_contents($file);
|
||||
@unlink($contents);
|
||||
|
||||
unlink($file);
|
||||
$this->assertEquals($expected, $contents);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<?php
|
||||
$config = array (
|
||||
'One' =>
|
||||
array (
|
||||
'two' => 'value',
|
||||
'three' =>
|
||||
array (
|
||||
'four' => 'value four',
|
||||
),
|
||||
'null' => NULL,
|
||||
),
|
||||
'Asset' =>
|
||||
array (
|
||||
'timestamp' => 'force',
|
||||
),
|
||||
);
|
Loading…
Reference in a new issue