for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SwooleTW\Http\HotReload;
/**
* Class FSOutput
*/
class FSOutput
{
* @param \SwooleTW\Http\HotReload\FSEvent $event
*
* @return string
public static function format(FSEvent $event): string
$item = is_dir($event->getPath()) ? 'Directory' : 'File';
$events = implode(', ', $event->getTypes());
$time = $event->getWhen()->format('Y.m.d H:i:s');
return sprintf('%s: %s %s at %s', $item, $event->getPath(), $events, $time);
}