Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • Command

Classes

  • Net\Bazzline\Component\Command\AbstractCommand
  • Net\Bazzline\Component\Command\Command

Exceptions

  • Net\Bazzline\Component\Command\InvalidSystemEnvironmentException
  • Net\Bazzline\Component\Command\RuntimeException
  • Overview
  • Namespace
  • Class
 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: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2014-12-11
 */

namespace Net\Bazzline\Component\Command;

/**
 * Class Command
 * @package Net\Bazzline\Component\Command
 */
class Command extends AbstractCommand
{
    /**
     * @param string $command
     * @param boolean $validateReturnValue
     * @return array
     * @throws RuntimeException
     */
    public function __invoke($command, $validateReturnValue = true)
    {
        return $this->execute($command, $validateReturnValue);
    }
}
PHP Command Component by bazzline.net API documentation generated by ApiGen