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

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.

Loading...
×
×
  • Create New...