From bbe3b6a4395ea6465b31a85d4633bb9ed303fd2a Mon Sep 17 00:00:00 2001 From: euromark Date: Wed, 2 Apr 2014 03:09:42 +0200 Subject: [PATCH] more cs --- .../Controller/TestsAppsPostsController.php | 13 +++++++++++++ lib/Cake/TestSuite/CakeTestSuiteCommand.php | 1 + lib/Cake/TestSuite/ControllerTestCase.php | 1 + lib/Cake/TestSuite/Fixture/CakeTestModel.php | 2 +- lib/Cake/TestSuite/Reporter/CakeBaseReporter.php | 10 ++++++++++ 5 files changed, 26 insertions(+), 1 deletion(-) diff --git a/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php b/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php index 46d08da44..98c9107b0 100644 --- a/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php +++ b/lib/Cake/Test/test_app/Controller/TestsAppsPostsController.php @@ -27,6 +27,11 @@ class TestsAppsPostsController extends AppController { public $viewPath = 'TestsApps'; +/** + * add method + * + * @return void + */ public function add() { $data = array( 'Post' => array( @@ -44,6 +49,7 @@ class TestsAppsPostsController extends AppController { /** * check URL params * + * @return void */ public function url_var() { $this->set('params', $this->request->params); @@ -53,12 +59,18 @@ class TestsAppsPostsController extends AppController { /** * post var testing * + * @return void */ public function post_var() { $this->set('data', $this->request->data); $this->render('index'); } +/** + * input_data() + * + * @return void + */ public function input_data() { $this->set('data', $this->request->input('json_decode', true)); $this->render('index'); @@ -67,6 +79,7 @@ class TestsAppsPostsController extends AppController { /** * Fixturized action for testAction() * + * @return void */ public function fixtured() { $this->set('posts', $this->Post->find('all')); diff --git a/lib/Cake/TestSuite/CakeTestSuiteCommand.php b/lib/Cake/TestSuite/CakeTestSuiteCommand.php index 65e391942..1af5baa8e 100644 --- a/lib/Cake/TestSuite/CakeTestSuiteCommand.php +++ b/lib/Cake/TestSuite/CakeTestSuiteCommand.php @@ -57,6 +57,7 @@ class CakeTestSuiteCommand extends PHPUnit_TextUI_Command { * * @param array $argv * @param boolean $exit + * @return void */ public function run(array $argv, $exit = true) { $this->handleArguments($argv); diff --git a/lib/Cake/TestSuite/ControllerTestCase.php b/lib/Cake/TestSuite/ControllerTestCase.php index 23f03ce79..a2b58c44b 100644 --- a/lib/Cake/TestSuite/ControllerTestCase.php +++ b/lib/Cake/TestSuite/ControllerTestCase.php @@ -94,6 +94,7 @@ class InterceptContentHelper extends Helper { * Intercepts and stores the contents of the view before the layout is rendered * * @param string $viewFile The view file + * @return void */ public function afterRender($viewFile) { $this->_View->assign('__view_no_layout__', $this->_View->fetch('content')); diff --git a/lib/Cake/TestSuite/Fixture/CakeTestModel.php b/lib/Cake/TestSuite/Fixture/CakeTestModel.php index bd23336c4..dc4254211 100644 --- a/lib/Cake/TestSuite/Fixture/CakeTestModel.php +++ b/lib/Cake/TestSuite/Fixture/CakeTestModel.php @@ -47,8 +47,8 @@ class CakeTestModel extends Model { * @param array $data * @param boolean|array $validate * @param array $fieldList + * @return void */ - public function save($data = null, $validate = true, $fieldList = array()) { $db = $this->getDataSource(); $db->columns['datetime']['formatter'] = 'CakeTestSuiteDispatcher::date'; diff --git a/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php b/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php index b14162a72..f98cde85c 100644 --- a/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php +++ b/lib/Cake/TestSuite/Reporter/CakeBaseReporter.php @@ -122,6 +122,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * Print result * * @param PHPUnit_Framework_TestResult $result + * @return void */ public function printResult(PHPUnit_Framework_TestResult $result) { $this->paintFooter($result); @@ -131,6 +132,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * Paint result * * @param PHPUnit_Framework_TestResult $result + * @return void */ public function paintResult(PHPUnit_Framework_TestResult $result) { $this->paintFooter($result); @@ -142,6 +144,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintException($e, $test); @@ -153,6 +156,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * @param PHPUnit_Framework_Test $test * @param PHPUnit_Framework_AssertionFailedError $e * @param float $time + * @return void */ public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { $this->paintFail($e, $test); @@ -164,6 +168,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintSkip($e, $test); @@ -175,6 +180,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * @param PHPUnit_Framework_Test $test * @param Exception $e * @param float $time + * @return void */ public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { $this->paintSkip($e, $test); @@ -184,6 +190,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * A test suite started. * * @param PHPUnit_Framework_TestSuite $suite + * @return void */ public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { if (!$this->_headerSent) { @@ -196,6 +203,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * A test suite ended. * * @param PHPUnit_Framework_TestSuite $suite + * @return void */ public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { } @@ -204,6 +212,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * A test started. * * @param PHPUnit_Framework_Test $test + * @return void */ public function startTest(PHPUnit_Framework_Test $test) { } @@ -213,6 +222,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter { * * @param PHPUnit_Framework_Test $test * @param float $time + * @return void */ public function endTest(PHPUnit_Framework_Test $test, $time) { $this->numAssertions += $test->getNumAssertions();