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
  On 8/24/2018 at 9:36 PM, 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');
    }
  }
}

 

Expand  

i think this for blesta 4.3 and above ?

 

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
  On 8/28/2018 at 4:16 PM, 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.

Expand  

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...