for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BrightComponents\Services\Traits;
use BrightComponents\Services\ServiceCaller;
trait SelfCallingService
{
/**
* Run the service.
*
* @return mixed
*/
public static function call()
return app(ServiceCaller::class)->call(static::class, ...func_get_args());
}