Skip to content

Commit

Permalink
Fix more coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 11, 2012
1 parent 932c9d4 commit 82d8df9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Configure/IniReaderTest.php
Expand Up @@ -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;
}

/**
Expand Down
3 changes: 2 additions & 1 deletion lib/Cake/Test/Case/Configure/PhpReaderTest.php
Expand Up @@ -19,14 +19,15 @@
App::uses('PhpReader', 'Configure');

class PhpReaderTest extends CakeTestCase {

/**
* setup
*
* @return void
*/
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;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/basics.php
Expand Up @@ -148,6 +148,7 @@ function sortByKey(&$array, $sortby, $order = 'asc', $type = SORT_NUMERIC) {
}
return $out;
}

}

/**
Expand Down Expand Up @@ -752,4 +753,3 @@ function convertSlash($string) {
$string = str_replace('/', '_', $string);
return $string;
}

0 comments on commit 82d8df9

Please sign in to comment.