for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Isswp101\Persimmon\Helpers;
use ReflectionClass;
class Reflection
{
public static function getShortname(string $class): string
$reflection = new ReflectionClass($class);
return $reflection->getShortName();
}