Try to make same comments for constructors.

Conflicts:
	lib/Cake/I18n/L10n.php
This commit is contained in:
Kim Egede Jakobsen 2013-09-08 21:18:59 +02:00
parent 9d18a5da78
commit f0205f53ad
6 changed files with 12 additions and 11 deletions

View file

@ -39,7 +39,7 @@ class CakeErrorController extends AppController {
public $uses = array(); public $uses = array();
/** /**
* __construct * Constructor
* *
* @param CakeRequest $request * @param CakeRequest $request
* @param CakeResponse $response * @param CakeResponse $response

View file

@ -31,7 +31,7 @@ App::uses('CakeLog', 'Log');
class Object { class Object {
/** /**
* constructor, no-op * Constructor, no-op
* *
*/ */
public function __construct() { public function __construct() {

View file

@ -327,6 +327,7 @@ class L10n {
/** /**
* Class constructor * Class constructor
*
*/ */
public function __construct() { public function __construct() {
if (defined('DEFAULT_LANGUAGE')) { if (defined('DEFAULT_LANGUAGE')) {

View file

@ -35,7 +35,7 @@ abstract class BaseLog implements CakeLogInterface {
protected $_config = array(); protected $_config = array();
/** /**
* __construct method * Constructor
* *
* @param array $config Configuration array * @param array $config Configuration array
*/ */

View file

@ -376,7 +376,7 @@ class CakeResponse {
protected $_cookies = array(); protected $_cookies = array();
/** /**
* Class constructor * Constructor
* *
* @param array $options list of parameters to setup the response. Possible values are: * @param array $options list of parameters to setup the response. Possible values are:
* - body: the response text that should be sent to the client * - body: the response text that should be sent to the client
@ -630,12 +630,12 @@ class CakeResponse {
/** /**
* Queries & sets valid HTTP response codes & messages. * Queries & sets valid HTTP response codes & messages.
* *
* @param integer|array $code If $code is an integer, then the corresponding code/message is * @param integer|array $code If $code is an integer, then the corresponding code/message is
* returned if it exists, null if it does not exist. If $code is an array, then the * returned if it exists, null if it does not exist. If $code is an array, then the
* keys are used as codes and the values as messages to add to the default HTTP * keys are used as codes and the values as messages to add to the default HTTP
* codes. The codes must be integers greater than 99 and less than 1000. Keep in * codes. The codes must be integers greater than 99 and less than 1000. Keep in
* mind that the HTTP specification outlines that status codes begin with a digit * mind that the HTTP specification outlines that status codes begin with a digit
* between 1 and 5, which defines the class of response the client is to expect. * between 1 and 5, which defines the class of response the client is to expect.
* Example: * Example:
* *
* httpCodes(404); // returns array(404 => 'Not Found') * httpCodes(404); // returns array(404 => 'Not Found')

View file

@ -77,7 +77,7 @@ class CakeTestSuiteDispatcher {
protected static $_Reporter = null; protected static $_Reporter = null;
/** /**
* constructor * Constructor
* *
*/ */
public function __construct() { public function __construct() {