for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mnabialek\LaravelModular\Traits;
trait Normalizer
{
/**
* Normalize path (removes trailing directory separators)
*
* @param string $path
* @return string
*/
protected function normalizePath($path)
return rtrim($path, '/\\');
}