for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the "andrey-helldar/support" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* @author Andrey Helldar <[email protected]>
* @copyright 2021 Andrey Helldar
* @license MIT
* @see https://github.com/andrey-helldar/support
*/
namespace Helldar\Support\Facades\Helpers;
use Closure;
use Helldar\Support\Facades\Facade;
use Helldar\Support\Helpers\Call as Helper;
/**
* @method static mixed|null run(callable|Closure|string $class, string $method, ...$parameters)
* @method static mixed|null runExists(callable|Closure|string $class, string $method, ...$parameters)
* @method static mixed|null runMethods($class, $methods, ...$parameters)
* @method static mixed|null runOf(array $map, $value, ...$parameters)
* @method static mixed|null when(bool $when, callable|Closure|string $class, string $method, ...$parameters)
class Call extends Facade
{
protected static function getFacadeAccessor()
return Helper::class;
}