1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50:
<?php
namespace Net\Bazzline\Component\CommandCollection\Filesystem;
use Net\Bazzline\Component\Command\AbstractCommand;
use Net\Bazzline\Component\Command\InvalidSystemEnvironmentException;
use Net\Bazzline\Component\Command\RuntimeException;
class Remove extends AbstractCommand
{
public function __invoke($source, $recursive = true)
{
return $this->remove($source);
}
public function remove($source, $recursive = true)
{
return $this->execute('/usr/bin/env rm -f' . ($recursive ? 'r' : '') . ' ' . $source);
}
public function validateSystemEnvironment()
{
if (!is_executable('/usr/bin/rm')) {
throw new InvalidSystemEnvironmentException(
'/usr/bin/rm is mandatory'
);
}
}
}