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

View file

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