I had a console application. My application had used PHP-DI for auto wiring of application and bootstrapping. My services are using mysqli, so I have created it using PHP Di as lazy and my services are using them through auto wiring.
//PHP-DI code
$config = [
mysqli::class => create(mysqli::class)
->constructor(env('DATABASE_HOST'),
env('DATABASE_USER'),
env('DATABASE_PASSWORD'),
env('DATABASE'), 3306, null)->lazy(),
myService::class => autowire()
....
];
$builder = new ContainerBuilder();
$builder->enableCompilation(STORAGE_DIRECTORY . 'tmp');
$builder->writeProxiesToFile(true, STORAGE_DIRECTORY . 'tmp/proxies');
$builder->addDefinitions($config);
$this->container = $builder->build();
// myService Class
class myService
{
private $dbService;
public function __construct(mysqli $db)
{
$this->dbService = $db;
}
public function myMethod()
{
//any database operation in service
$sql = "DELETE FROM my_table where column1 = 'test';"
$this->dbService->query($sql);
return $this->dbService->affected_rows;
}
}
If I remove lazy in mysqli definition it is working fine without an issue but when I'm using lazy, it is staring to show warnings.
Warning: App\Services\myService::myMethod(): Property access is not allowed yet in /var/www/html/src/Services/myService.php on line 48