for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hello;
trait AbstractTrait
{
public function concreteMethod()
return $this->abstractMethod();
}
abstract public function abstractMethod();