Code cleanup

Remove unneeded sprintf.
Fix doc blocks.
Remove duplicated keys in tests assertions.
Use boolean value for CakeRequest $parseEnvironment param.
This commit is contained in:
Majna 2012-12-28 21:54:00 +01:00
parent 5551727a4b
commit 6d75d90c25
7 changed files with 5 additions and 9 deletions

View file

@ -70,9 +70,7 @@ class PhpReader implements ConfigReaderInterface {
include $file;
if (!isset($config)) {
throw new ConfigureException(
sprintf(__d('cake_dev', 'No variable $config found in %s'), $file)
);
throw new ConfigureException(__d('cake_dev', 'No variable $config found in %s', $file));
}
return $config;
}

View file

@ -135,7 +135,7 @@ class Component extends Object {
*
* @param Controller $controller Controller with components to shutdown
* @return void
* @link @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::shutdown
* @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::shutdown
*/
public function shutdown(Controller $controller) {
}

View file

@ -2959,7 +2959,7 @@ class DboSource extends DataSource {
/**
* Generate a database-native schema for the given Schema object
*
* @param Model $schema An instance of a subclass of CakeSchema
* @param CakeSchema $schema An instance of a subclass of CakeSchema
* @param string $tableName Optional. If specified only the table name given will be generated.
* Otherwise, all tables defined in the schema are generated.
* @return string

View file

@ -93,7 +93,6 @@ class MemcacheEngineTest extends CakeTestCase {
'persistent' => true,
'compress' => false,
'engine' => 'Memcache',
'persistent' => true,
'groups' => array()
);
$this->assertEquals($expecting, $settings);

View file

@ -155,7 +155,6 @@ class CrudAuthorizeTest extends CakeTestCase {
'create' => 'create',
'read' => 'read',
'index' => 'read',
'add' => 'create',
'edit' => 'update',
'view' => 'read',
'delete' => 'delete',

View file

@ -1254,7 +1254,7 @@ class ControllerTest extends CakeTestCase {
* @return void
*/
public function testPropertyBackwardsCompatibility() {
$request = new CakeRequest('posts/index', null);
$request = new CakeRequest('posts/index', false);
$request->addParams(array('controller' => 'posts', 'action' => 'index'));
$request->data = array('Post' => array('id' => 1));
$request->here = '/posts/index';

View file

@ -1315,7 +1315,7 @@ class RouterTest extends CakeTestCase {
$this->assertEquals($expected, $result);
$result = Router::parse('/posts/view/1.rss');
$expected = array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'pass' => array('1'), 'named' => array(), 'ext' => 'rss', 'named' => array());
$expected = array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'pass' => array('1'), 'named' => array(), 'ext' => 'rss');
$this->assertEquals($expected, $result);
$result = Router::parse('/posts/view/1.rss?query=test');