This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Example\FooBundle\Repository; | |
use Doctrine\ORM\EntityRepository; | |
class FooRepository extends EntityRepository | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Example\FooBundle\Service; | |
use Doctrine\ORM\EntityRepository; | |
use Symfony\Component\HttpKernel\Log\LoggerInterface; | |
class FooService | |
{ | |
protected $fooRepository; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"time": "2020-09-13 15:45:00", | |
"level": "info", | |
"channel": "main", | |
"message": "Some log entry has been produced" | |
} |
OlderNewer