1. Go to this page and download the library: Download reasno/lazy-loader library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
reasno / lazy-loader example snippets
namespace App\Example;
use Hyperf\Event\Contract\ListenerInterface;
use Hyperf\Framework\Event\BeforeWorkerStart;
use Psr\EventDispatcher\EventDispatcherInterface;
class ExampleListener implements ListenerInterface
{
/**
* @var EventDispatcherInterface
*/
protected $dispatcher;
public function __construct(EventDispatcherInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
}
/**
* @return string[] returns the events that you want to listen
*/
public function listen(): array
{
return [
BeforeWorkerStart::class,
];
}
public function process(object $event)
{
$dispatcher->dispatch(new SomeEvent());
}
}
namespace App\Example;
use Hyperf\Event\Contract\ListenerInterface;
use Hyperf\Framework\Event\BeforeWorkerStart;
use Lazy\Psr\EventDispatcher\EventDispatcherInterface;
class ExampleListener implements ListenerInterface
{
/**
* @var EventDispatcherInterface
*/
protected $dispatcher;
public function __construct(EventDispatcherInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
}
/**
* @return string[] returns the events that you want to listen
*/
public function listen(): array
{
return [
BeforeWorkerStart::class,
];
}
public function process(object $event)
{
$dispatcher->dispatch(new SomeEvent());
}
}