mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Try to make same comments for constructors.
Conflicts: lib/Cake/I18n/L10n.php
This commit is contained in:
parent
9d18a5da78
commit
f0205f53ad
6 changed files with 12 additions and 11 deletions
|
@ -39,7 +39,7 @@ class CakeErrorController extends AppController {
|
|||
public $uses = array();
|
||||
|
||||
/**
|
||||
* __construct
|
||||
* Constructor
|
||||
*
|
||||
* @param CakeRequest $request
|
||||
* @param CakeResponse $response
|
||||
|
|
|
@ -31,7 +31,7 @@ App::uses('CakeLog', 'Log');
|
|||
class Object {
|
||||
|
||||
/**
|
||||
* constructor, no-op
|
||||
* Constructor, no-op
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
|
|
|
@ -327,6 +327,7 @@ class L10n {
|
|||
|
||||
/**
|
||||
* Class constructor
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
if (defined('DEFAULT_LANGUAGE')) {
|
||||
|
|
|
@ -35,7 +35,7 @@ abstract class BaseLog implements CakeLogInterface {
|
|||
protected $_config = array();
|
||||
|
||||
/**
|
||||
* __construct method
|
||||
* Constructor
|
||||
*
|
||||
* @param array $config Configuration array
|
||||
*/
|
||||
|
|
|
@ -376,7 +376,7 @@ class CakeResponse {
|
|||
protected $_cookies = array();
|
||||
|
||||
/**
|
||||
* Class constructor
|
||||
* Constructor
|
||||
*
|
||||
* @param array $options list of parameters to setup the response. Possible values are:
|
||||
* - body: the response text that should be sent to the client
|
||||
|
|
|
@ -77,7 +77,7 @@ class CakeTestSuiteDispatcher {
|
|||
protected static $_Reporter = null;
|
||||
|
||||
/**
|
||||
* constructor
|
||||
* Constructor
|
||||
*
|
||||
*/
|
||||
public function __construct() {
|
||||
|
|
Loading…
Reference in a new issue