whitespace coding standards

This commit is contained in:
euromark 2013-07-05 14:15:18 +02:00
parent 06fc8dbfc1
commit c989624f80
15 changed files with 29 additions and 28 deletions

View file

@ -373,6 +373,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
* A test suite started. * A test suite started.
* *
* @param PHPUnit_Framework_TestSuite $suite * @param PHPUnit_Framework_TestSuite $suite
* @return void
*/ */
public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
if (!$this->_headerSent) { if (!$this->_headerSent) {

View file

@ -649,10 +649,10 @@ class FormHelper extends AppHelper {
* *
* ### Options: * ### Options:
* *
* - `escape` bool Whether or not to html escape the contents of the error. * - `escape` bool - Whether or not to html escape the contents of the error.
* - `wrap` mixed Whether or not the error message should be wrapped in a div. If a * - `wrap` mixed - Whether or not the error message should be wrapped in a div. If a
* string, will be used as the HTML tag to use. * string, will be used as the HTML tag to use.
* - `class` string The classname for the error message * - `class` string - The classname for the error message
* *
* @param string $field A field name, like "Modelname.fieldname" * @param string $field A field name, like "Modelname.fieldname"
* @param string|array $text Error message as string or array of messages. * @param string|array $text Error message as string or array of messages.