diff --git a/src/Classes/ExecutorPoolClass.php b/src/Classes/ExecutorPoolClass.php index 847275f..d390051 100644 --- a/src/Classes/ExecutorPoolClass.php +++ b/src/Classes/ExecutorPoolClass.php @@ -6,14 +6,14 @@ class ExecutorPoolClass { /** * These paths for all pools of executors. + * + * @var array */ private array $paths = []; public function __construct() { - $this->paths = [ - base_path('executors'), - ]; + $this->paths = [base_path('executors')]; } /** @@ -30,7 +30,6 @@ public function getPaths(): array * Add a new path to executors pools. * * @param string $path - * * @return void */ public function addPath(string $path): void