mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
type hinting controllers and views
This commit is contained in:
parent
38c3e30a1e
commit
22452f61f8
22 changed files with 50 additions and 50 deletions
|
@ -534,7 +534,7 @@ class ModelTask extends BakeTask {
|
|||
* @param array $associations Array of in progress associations
|
||||
* @return array $associations with belongsTo added in.
|
||||
*/
|
||||
public function findBelongsTo($model, $associations) {
|
||||
public function findBelongsTo(Model $model, $associations) {
|
||||
$fields = $model->schema(true);
|
||||
foreach ($fields as $fieldName => $field) {
|
||||
$offset = strpos($fieldName, '_id');
|
||||
|
@ -563,7 +563,7 @@ class ModelTask extends BakeTask {
|
|||
* @param array $associations Array of in progress associations
|
||||
* @return array $associations with hasOne and hasMany added in.
|
||||
*/
|
||||
public function findHasOneAndMany($model, $associations) {
|
||||
public function findHasOneAndMany(Model $model, $associations) {
|
||||
$foreignKey = $this->_modelKey($model->name);
|
||||
foreach ($this->_tables as $otherTable) {
|
||||
$tempOtherModel = $this->_getModelObject($this->_modelName($otherTable), $otherTable);
|
||||
|
@ -606,7 +606,7 @@ class ModelTask extends BakeTask {
|
|||
* @param array $associations Array of in-progress associations
|
||||
* @return array $associations with hasAndBelongsToMany added in.
|
||||
*/
|
||||
public function findHasAndBelongsToMany($model, $associations) {
|
||||
public function findHasAndBelongsToMany(Model $model, $associations) {
|
||||
$foreignKey = $this->_modelKey($model->name);
|
||||
foreach ($this->_tables as $otherTable) {
|
||||
$tempOtherModel = $this->_getModelObject($this->_modelName($otherTable), $otherTable);
|
||||
|
@ -646,7 +646,7 @@ class ModelTask extends BakeTask {
|
|||
* @param array $associations Array of associations to be confirmed.
|
||||
* @return array Array of confirmed associations
|
||||
*/
|
||||
public function confirmAssociations($model, $associations) {
|
||||
public function confirmAssociations(Model $model, $associations) {
|
||||
foreach ($associations as $type => $settings) {
|
||||
if (!empty($associations[$type])) {
|
||||
foreach ($associations[$type] as $i => $assoc) {
|
||||
|
@ -672,7 +672,7 @@ class ModelTask extends BakeTask {
|
|||
* @param array $associations Array of associations.
|
||||
* @return array Array of associations.
|
||||
*/
|
||||
public function doMoreAssociations($model, $associations) {
|
||||
public function doMoreAssociations(Model $model, $associations) {
|
||||
$prompt = __d('cake_console', 'Would you like to define some additional model associations?');
|
||||
$wannaDoMoreAssoc = $this->in($prompt, array('y', 'n'), 'n');
|
||||
$possibleKeys = $this->_generatePossibleKeys();
|
||||
|
|
|
@ -448,7 +448,7 @@ class ViewTask extends BakeTask {
|
|||
* @param Model $model
|
||||
* @return array $associations
|
||||
*/
|
||||
protected function _associations($model) {
|
||||
protected function _associations(Model $model) {
|
||||
$keys = array('belongsTo', 'hasOne', 'hasMany', 'hasAndBelongsToMany');
|
||||
$associations = array();
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@ class Component extends Object {
|
|||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::initialize
|
||||
*/
|
||||
public function initialize($controller) { }
|
||||
public function initialize(Controller $controller) { }
|
||||
|
||||
/**
|
||||
* Called after the Controller::beforeFilter() and before the controller action
|
||||
|
@ -115,7 +115,7 @@ class Component extends Object {
|
|||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::startup
|
||||
*/
|
||||
public function startup($controller) { }
|
||||
public function startup(Controller $controller) { }
|
||||
|
||||
/**
|
||||
* Called after the Controller::beforeRender(), after the view class is loaded, and before the
|
||||
|
@ -125,7 +125,7 @@ class Component extends Object {
|
|||
* @return void
|
||||
* @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::beforeRender
|
||||
*/
|
||||
public function beforeRender($controller) { }
|
||||
public function beforeRender(Controller $controller) { }
|
||||
|
||||
/**
|
||||
* Called after Controller::render() and before the output is printed to the browser.
|
||||
|
@ -134,7 +134,7 @@ class Component extends Object {
|
|||
* @return void
|
||||
* @link @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::shutdown
|
||||
*/
|
||||
public function shutdown($controller) { }
|
||||
public function shutdown(Controller $controller) { }
|
||||
|
||||
/**
|
||||
* Called before Controller::redirect(). Allows you to replace the url that will
|
||||
|
@ -155,6 +155,6 @@ class Component extends Object {
|
|||
* @return array|null Either an array or null.
|
||||
* @link @link http://book.cakephp.org/2.0/en/controllers/components.html#Component::beforeRedirect
|
||||
*/
|
||||
public function beforeRedirect($controller, $url, $status = null, $exit = true) {}
|
||||
public function beforeRedirect(Controller $controller, $url, $status = null, $exit = true) {}
|
||||
|
||||
}
|
||||
|
|
|
@ -65,5 +65,5 @@ interface AclInterface {
|
|||
*
|
||||
* @param AclComponent $component
|
||||
*/
|
||||
public function initialize($component);
|
||||
public function initialize(Component $component);
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ class DbAcl extends Object implements AclInterface {
|
|||
* @param AclComponent $component
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($component) {
|
||||
public function initialize(Component $component) {
|
||||
$component->Aro = $this->Aro;
|
||||
$component->Aco = $this->Aco;
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@ class IniAcl extends Object implements AclInterface {
|
|||
* @param AclBase $component
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($component) {
|
||||
public function initialize(Component $component) {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ class PhpAcl extends Object implements AclInterface {
|
|||
* @param AclComponent $Component Component instance
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($Component) {
|
||||
public function initialize(Component $Component) {
|
||||
if (!empty($Component->settings['adapter'])) {
|
||||
$this->options = array_merge($this->options, $Component->settings['adapter']);
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ abstract class BaseAuthorize {
|
|||
* @return mixed
|
||||
* @throws CakeException
|
||||
*/
|
||||
public function controller($controller = null) {
|
||||
public function controller(Controller $controller = null) {
|
||||
if ($controller) {
|
||||
if (!$controller instanceof Controller) {
|
||||
throw new CakeException(__d('cake_dev', '$controller needs to be an instance of Controller'));
|
||||
|
|
|
@ -44,7 +44,7 @@ class ControllerAuthorize extends BaseAuthorize {
|
|||
* @return mixed
|
||||
* @throws CakeException
|
||||
*/
|
||||
public function controller($controller = null) {
|
||||
public function controller(Controller $controller = null) {
|
||||
if ($controller) {
|
||||
if (!method_exists($controller, 'isAuthorized')) {
|
||||
throw new CakeException(__d('cake_dev', '$controller does not implement an isAuthorized() method.'));
|
||||
|
|
|
@ -246,7 +246,7 @@ class AuthComponent extends Component {
|
|||
* @param Controller $controller A reference to the instantiating controller object
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($controller) {
|
||||
public function initialize(Controller $controller) {
|
||||
$this->request = $controller->request;
|
||||
$this->response = $controller->response;
|
||||
$this->_methods = $controller->methods;
|
||||
|
@ -263,7 +263,7 @@ class AuthComponent extends Component {
|
|||
* @param Controller $controller A reference to the instantiating controller object
|
||||
* @return boolean
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
if ($controller->name == 'CakeError') {
|
||||
return true;
|
||||
}
|
||||
|
@ -694,7 +694,7 @@ class AuthComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return void
|
||||
*/
|
||||
public function shutdown($controller) {
|
||||
public function shutdown(Controller $controller) {
|
||||
if ($this->loggedIn()) {
|
||||
$this->Session->delete('Auth.redirect');
|
||||
}
|
||||
|
|
|
@ -187,7 +187,7 @@ class CookieComponent extends Component {
|
|||
* @param Controller $controller
|
||||
* @return void
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$this->_expire($this->time);
|
||||
|
||||
if (isset($_COOKIE[$this->name])) {
|
||||
|
|
|
@ -270,7 +270,7 @@ class EmailComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($controller) {
|
||||
public function initialize(Controller $controller) {
|
||||
if (Configure::read('App.encoding') !== null) {
|
||||
$this->charset = Configure::read('App.encoding');
|
||||
}
|
||||
|
|
|
@ -115,7 +115,7 @@ class RequestHandlerComponent extends Component {
|
|||
* @return void
|
||||
* @see Router::parseExtensions()
|
||||
*/
|
||||
public function initialize($controller, $settings = array()) {
|
||||
public function initialize(Controller $controller, $settings = array()) {
|
||||
if (isset($this->request->params['ext'])) {
|
||||
$this->ext = $this->request->params['ext'];
|
||||
}
|
||||
|
@ -173,7 +173,7 @@ class RequestHandlerComponent extends Component {
|
|||
* @param Controller $controller A reference to the controller
|
||||
* @return void
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$controller->request->params['isAjax'] = $this->request->is('ajax');
|
||||
$isRecognized = (
|
||||
!in_array($this->ext, array('html', 'htm')) &&
|
||||
|
@ -224,7 +224,7 @@ class RequestHandlerComponent extends Component {
|
|||
* @param boolean $exit
|
||||
* @return void
|
||||
*/
|
||||
public function beforeRedirect($controller, $url, $status = null, $exit = true) {
|
||||
public function beforeRedirect(Controller $controller, $url, $status = null, $exit = true) {
|
||||
if (!$this->request->is('ajax')) {
|
||||
return;
|
||||
}
|
||||
|
@ -253,7 +253,7 @@ class RequestHandlerComponent extends Component {
|
|||
* @params Controller $controller
|
||||
* @return boolean false if the render process should be aborted
|
||||
**/
|
||||
public function beforeRender($controller) {
|
||||
public function beforeRender(Controller $controller) {
|
||||
$shouldCheck = $this->settings['checkHttpCache'];
|
||||
if ($shouldCheck && $this->response->checkNotModified($this->request)) {
|
||||
return false;
|
||||
|
@ -566,7 +566,7 @@ class RequestHandlerComponent extends Component {
|
|||
* @see RequestHandlerComponent::setContent()
|
||||
* @see RequestHandlerComponent::respondAs()
|
||||
*/
|
||||
public function renderAs($controller, $type, $options = array()) {
|
||||
public function renderAs(Controller $controller, $type, $options = array()) {
|
||||
$defaults = array('charset' => 'UTF-8');
|
||||
|
||||
if (Configure::read('App.encoding') !== null) {
|
||||
|
|
|
@ -204,7 +204,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return void
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$this->request = $controller->request;
|
||||
$this->_action = $this->request->params['action'];
|
||||
$this->_methodsRequired($controller);
|
||||
|
@ -307,7 +307,7 @@ class SecurityComponent extends Component {
|
|||
* @link http://book.cakephp.org/2.0/en/core-libraries/components/security-component.html#handling-blackhole-callbacks
|
||||
* @throws BadRequestException
|
||||
*/
|
||||
public function blackHole($controller, $error = '') {
|
||||
public function blackHole(Controller $controller, $error = '') {
|
||||
if ($this->blackHoleCallback == null) {
|
||||
throw new BadRequestException(__d('cake_dev', 'The request has been black-holed'));
|
||||
} else {
|
||||
|
@ -335,7 +335,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return boolean true if $method is required
|
||||
*/
|
||||
protected function _methodsRequired($controller) {
|
||||
protected function _methodsRequired(Controller $controller) {
|
||||
foreach (array('Post', 'Get', 'Put', 'Delete') as $method) {
|
||||
$property = 'require' . $method;
|
||||
if (is_array($this->$property) && !empty($this->$property)) {
|
||||
|
@ -358,7 +358,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return boolean true if secure connection required
|
||||
*/
|
||||
protected function _secureRequired($controller) {
|
||||
protected function _secureRequired(Controller $controller) {
|
||||
if (is_array($this->requireSecure) && !empty($this->requireSecure)) {
|
||||
$requireSecure = $this->requireSecure;
|
||||
|
||||
|
@ -379,7 +379,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return boolean true if authentication required
|
||||
*/
|
||||
protected function _authRequired($controller) {
|
||||
protected function _authRequired(Controller $controller) {
|
||||
if (is_array($this->requireAuth) && !empty($this->requireAuth) && !empty($this->request->data)) {
|
||||
$requireAuth = $this->requireAuth;
|
||||
|
||||
|
@ -419,7 +419,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller Instantiating controller
|
||||
* @return boolean true if submitted form is valid
|
||||
*/
|
||||
protected function _validatePost($controller) {
|
||||
protected function _validatePost(Controller $controller) {
|
||||
if (empty($controller->request->data)) {
|
||||
return true;
|
||||
}
|
||||
|
@ -544,7 +544,7 @@ class SecurityComponent extends Component {
|
|||
* @param Controller $controller A controller to check
|
||||
* @return boolean Valid csrf token.
|
||||
*/
|
||||
protected function _validateCsrf($controller) {
|
||||
protected function _validateCsrf(Controller $controller) {
|
||||
$token = $this->Session->read('_Token');
|
||||
$requestToken = $controller->request->data('_Token.key');
|
||||
if (isset($token['csrfTokens'][$requestToken]) && $token['csrfTokens'][$requestToken] >= time()) {
|
||||
|
@ -585,7 +585,7 @@ class SecurityComponent extends Component {
|
|||
* @param array $params Parameters to send to method
|
||||
* @return mixed Controller callback method's response
|
||||
*/
|
||||
protected function _callback($controller, $method, $params = array()) {
|
||||
protected function _callback(Controller $controller, $method, $params = array()) {
|
||||
if (is_callable(array($controller, $method))) {
|
||||
return call_user_func_array(array(&$controller, $method), empty($params) ? null : $params);
|
||||
} else {
|
||||
|
|
|
@ -34,7 +34,7 @@ class TestSecurityComponent extends SecurityComponent {
|
|||
* @param Controller $controller
|
||||
* @return unknown
|
||||
*/
|
||||
public function validatePost($controller) {
|
||||
public function validatePost(Controller $controller) {
|
||||
return $this->_validatePost($controller);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ class AppleComponent extends Component {
|
|||
* @param mixed $controller
|
||||
* @return void
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$this->testName = $controller->name;
|
||||
}
|
||||
}
|
||||
|
@ -117,7 +117,7 @@ class OrangeComponent extends Component {
|
|||
* @param mixed $controller
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($controller) {
|
||||
public function initialize(Controller $controller) {
|
||||
$this->Controller = $controller;
|
||||
$this->Banana->testField = 'OrangeField';
|
||||
}
|
||||
|
@ -128,7 +128,7 @@ class OrangeComponent extends Component {
|
|||
* @param Controller $controller
|
||||
* @return string
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$controller->foo = 'pass';
|
||||
}
|
||||
}
|
||||
|
@ -153,7 +153,7 @@ class BananaComponent extends Component {
|
|||
* @param Controller $controller
|
||||
* @return string
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
$controller->bar = 'fail';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -328,7 +328,7 @@ class TestComponent extends Object {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($controller) {
|
||||
public function initialize(Controller $controller) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -336,7 +336,7 @@ class TestComponent extends Object {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function startup($controller) {
|
||||
public function startup(Controller $controller) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -344,7 +344,7 @@ class TestComponent extends Object {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function shutdown($controller) {
|
||||
public function shutdown(Controller $controller) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -352,7 +352,7 @@ class TestComponent extends Object {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function beforeRender($controller) {
|
||||
public function beforeRender(Controller $controller) {
|
||||
if ($this->viewclass) {
|
||||
$controller->viewClass = $this->viewclass;
|
||||
}
|
||||
|
@ -362,7 +362,7 @@ class TestComponent extends Object {
|
|||
class Test2Component extends TestComponent {
|
||||
|
||||
|
||||
public function beforeRender($controller) {
|
||||
public function beforeRender(Controller $controller) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ class BlueberryComponent extends Component {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function initialize($controller) {
|
||||
public function initialize(Controller $controller) {
|
||||
$this->testName = 'BlueberryComponent';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@ class JsonView extends View {
|
|||
*
|
||||
* @param Controller $controller
|
||||
*/
|
||||
public function __construct($controller) {
|
||||
public function __construct(Controller $controller = null) {
|
||||
parent::__construct($controller);
|
||||
if (isset($controller->response) && $controller->response instanceof CakeResponse) {
|
||||
$controller->response->type('json');
|
||||
|
|
|
@ -70,7 +70,7 @@ class MediaView extends View {
|
|||
*
|
||||
* @param Controller $controller The controller with viewVars
|
||||
*/
|
||||
public function __construct($controller = null) {
|
||||
public function __construct(Controller $controller = null) {
|
||||
parent::__construct($controller);
|
||||
}
|
||||
|
||||
|
|
|
@ -305,7 +305,7 @@ class View extends Object {
|
|||
*
|
||||
* @param Controller $controller A controller object to pull View::_passedVars from.
|
||||
*/
|
||||
public function __construct($controller) {
|
||||
public function __construct(Controller $controller = null) {
|
||||
if (is_object($controller)) {
|
||||
$count = count($this->_passedVars);
|
||||
for ($j = 0; $j < $count; $j++) {
|
||||
|
|
|
@ -63,7 +63,7 @@ class XmlView extends View {
|
|||
*
|
||||
* @param Controller $controller
|
||||
*/
|
||||
public function __construct($controller) {
|
||||
public function __construct(Controller $controller = null) {
|
||||
parent::__construct($controller);
|
||||
|
||||
if (isset($controller->response) && $controller->response instanceof CakeResponse) {
|
||||
|
|
Loading…
Reference in a new issue