Skip to content

Commit

Permalink
Added stdClass to Injectable
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Jul 17, 2023
1 parent e01ae9b commit 0c12a33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion phalcon/Di/Injectable.zep
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Phalcon\Di;

use stdClass;
use Phalcon\Di\Di;
use Phalcon\Session\BagInterface;

Expand Down Expand Up @@ -42,7 +43,7 @@ use Phalcon\Session\BagInterface;
* @property \Phalcon\Session\Bag|\Phalcon\Session\BagInterface $persistent
* @property \Phalcon\Mvc\View|\Phalcon\Mvc\ViewInterface $view
*/
abstract class Injectable implements InjectionAwareInterface
abstract class Injectable extends stdClass implements InjectionAwareInterface
{
/**
* Dependency Injector
Expand Down

0 comments on commit 0c12a33

Please sign in to comment.