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:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-12-14
*/
namespace Net\Bazzline\Component\CommandCollection\Process;
use Net\Bazzline\Component\Command\AbstractCommand;
use Net\Bazzline\Component\Command\RuntimeException;
/**
* Class ProcessSnapshot
* @package Example\ps
*/
class ProcessSnapshot extends AbstractCommand
{
/**
* @return array
* @throws RuntimeException
*/
public function ps()
{
return $this->execute(
'/usr/bin/ps auxf'
);
}
/**
* @return array
*/
public function __invoke()
{
return $this->ps();
}
}