class_uses

Supported Versions: PHP 5 >= 5.4.0, PHP 7, PHP 8
Return the traits used by the given class
<?php class_uses(object|string $object_or_class, bool $autoload = true): array|false
<?php         $app = parent::getApplication();



        foreach ($app->all() as $command) {

            if (! in_array(RunsInPlease::class, class_uses($command))) {

                $command->setHidden(true);

            }

        }
<?php     {

        $command = $this->laravel->make($command);



        if (! in_array(RunsInPlease::class, class_uses($command))) {

            $this->deferredCommands[] = $command;



            return;