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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...