Jump to content

Recommended Posts

Posted
<?php
use Blesta\Core\Util\Common\Traits\Container;

class MyClass
{
  use Container;

  public function myMethod()
  {
    if (($logger = $this->getFromContainer('logger'))) {
    	$logger->info('The Logger is loaded');
    }
  }
}

 

Posted
16 hours ago, Tyson said:

<?php
use Blesta\Core\Util\Common\Traits\Container;

class MyClass
{
  use Container;

  public function myMethod()
  {
    if (($logger = $this->getFromContainer('logger'))) {
    	$logger->info('The Logger is loaded');
    }
  }
}

 

i think this for blesta 4.3 and above ?

 

Posted
14 minutes ago, Tyson said:

Yes, that's correct.

getFromContainer() only work in models or controllers, it give us a error when we call it from a abstract class that is not model/controller/helper/components .

Posted

Did you load the Container trait as shown in my example? That should work just fine.

Models and controllers can call getFromContainer because they inherit from AppController/AppModel, which uses the Container trait.

Posted
3 hours ago, Tyson said:

Did you load the Container trait as shown in my example? That should work just fine.

Models and controllers can call getFromContainer because they inherit from AppController/AppModel, which uses the Container trait.

i have used the monolog directly. but even if i will test again your solution and give reply, it might help other in the future .

  • 4 weeks later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...