for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Laravel\Forge\Commands;
use LogicException;
trait NotSupportingResourceClassTrait
{
/**
* Server resource class name.
*
* @return string
*/
public function resourceClass()
throw new LogicException(get_class($this).' does not support resource classes.');
}