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 Helldar\Support\Facades\Facade;
use Helldar\Support\Helpers\Instance as Helper;
/**
* @method static bool exists(object|string $haystack)
* @method static bool of(object|string $haystack, string|string[] $needles)
* @method static string|null basename(object|string $class)
* @method static string|null classname(object|string $class = null)
class Instance extends Facade
{
protected static function getFacadeAccessor()
return Helper::class;
}