File "SupervisorFactory.php"
Full Path: /var/www/drive/laravel/horizon/src/SupervisorFactory.php
File size: 336 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon;
class SupervisorFactory
{
/**
* Create a new supervisor instance.
*
* @param \Laravel\Horizon\SupervisorOptions $options
* @return \Laravel\Horizon\Supervisor
*/
public function make(SupervisorOptions $options)
{
return new Supervisor($options);
}
}