Saturday, March 12, 2016

Re: What is the meaning of this error in cakephp 3?

Just as it says. You need to have the same method signature as the one you are overriding. Thus:

public function beforeFilter(Event $event)
{
return null;
}

you forgot the parameter.


Willem



On 12 Mar 2016, at 10:30, Clement Crownrise <clementcrownrise@gmail.com> wrote:

Hello, I am doing the blog tutorial in cakephp 3, but I got this notice at the top of my page, please does anyone know the meaning and how to solve it?

Strict (2048): Declaration of App\Controller\AppController::beforefilter() should be compatible with Cake\Controller\Controller::beforeFilter(Cake\Event\Event $event) [APP/Controller\AppController.php, line 29]



Strict (2048): Declaration of App\Controller\UsersController::beforefilter() should be compatible with App\Controller\AppController::beforefilter() [APP/Controller\UsersController.php, line 10]

Your help will be appreciated

--
Sign up for our Newsletter for updates.
http://cakephp.org/newsletter/signup
 
We will soon be closing this Google Group. But don't worry, we have something better coming. Stay tuned for an updated from the CakePHP Team soon.
 
Like Us on FaceBook https://www.facebook.com/CakePHP
Follow us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: