whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
nunomaduro
/
larastan
/
src
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/nunomaduro/larastan/src/LarastanStubFilesExtension.php
<?php declare(strict_types=1); namespace NunoMaduro\Larastan; use PHPStan\PhpDoc\StubFilesExtension; use Symfony\Component\Finder\Finder; final class LarastanStubFilesExtension implements StubFilesExtension { /** * @inheritDoc */ public function getFiles(): array { $files = []; $finder = Finder::create()->files()->name('*.stub')->in(__DIR__.'/../stubs'); foreach ($finder as $file) { $files[] = $file->getPathname(); } return $files; } }
Copyright ©2021 || Defacer Indonesia