mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix more coding standards.
This commit is contained in:
parent
932c9d4e2f
commit
82d8df9c3e
3 changed files with 4 additions and 3 deletions
|
@ -34,7 +34,7 @@ class IniReaderTest extends CakeTestCase {
|
|||
*/
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
$this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config'. DS;
|
||||
$this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
App::uses('PhpReader', 'Configure');
|
||||
|
||||
class PhpReaderTest extends CakeTestCase {
|
||||
|
||||
/**
|
||||
* setup
|
||||
*
|
||||
|
@ -26,7 +27,7 @@ class PhpReaderTest extends CakeTestCase {
|
|||
*/
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
$this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config'. DS;
|
||||
$this->path = CAKE . 'Test' . DS . 'test_app' . DS . 'Config' . DS;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -148,6 +148,7 @@ if (!function_exists('sortByKey')) {
|
|||
}
|
||||
return $out;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -752,4 +753,3 @@ function convertSlash($string) {
|
|||
$string = str_replace('/', '_', $string);
|
||||
return $string;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue