MOON
Server: Apache
System: Linux server.royaltuning.hu 4.18.0-425.13.1.el8_7.x86_64 #1 SMP Tue Feb 21 04:20:52 EST 2023 x86_64
User: royaltuning (1001)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //usr/local/apache/htdocs/Modules/Support/Manager.php
<?php

namespace Modules\Support;

abstract class Manager
{
    private $drivers = [];

    public function all()
    {
        return collect($this->drivers);
    }

    public function names()
    {
        return array_keys($this->drivers);
    }

    public function get($name)
    {
        return array_get($this->drivers, $name);
    }

    public function register($name, $driver)
    {
        $this->drivers[$name] = is_callable($driver) ? call_user_func($driver) : $driver;

        return $this;
    }

    public function count()
    {
        return count($this->drivers);
    }

    public function isEmpty()
    {
        return empty($this->drivers);
    }

    public function isNotEmpty()
    {
        return ! $this->isEmpty();
    }
}