for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bludata\Lumen\Services;
abstract class BaseService
{
/**
* @var Bludata\Lumen\Repositories\BaseRepository
*/
protected $mainRepository;
public function getMainRepository()
return $this->mainRepository;
}