Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • Cli
          • Readline
            • Configuration

Classes

  • Net\Bazzline\Component\Cli\Readline\Autocomplete
  • Net\Bazzline\Component\Cli\Readline\Configuration\Assembler
  • Net\Bazzline\Component\Cli\Readline\Configuration\Executable
  • Net\Bazzline\Component\Cli\Readline\Configuration\Validator
  • Net\Bazzline\Component\Cli\Readline\DebugManager
  • Net\Bazzline\Component\Cli\Readline\Manager
  • Net\Bazzline\Component\Cli\Readline\ManagerFactory
  • Net\Bazzline\Component\Cli\Readline\ReadLine
  • 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: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-07-05 
 */

namespace Net\Bazzline\Component\Cli\Readline\Configuration;

use Closure;
use Net\Bazzline\Component\GenericAgreement\Exception\ExceptionInterface;
use Net\Bazzline\Component\GenericAgreement\Process\ExecutableInterface;

class Executable implements ExecutableInterface
{
    /** @var string|array|Closure */
    private $executable;

    /**
     * @param string|array $arrayOrString
     * @return $this
     */
    public function setExecutable($arrayOrString)
    {
        $this->executable = $arrayOrString;

        return $this;
    }

    /**
     * @param mixed $data
     * @return mixed
     * @throws ExceptionInterface
     */
    public function execute($data)
    {
        $executable = $this->executable;

        if (is_null($data)) {
            call_user_func($executable);
        } else {
            call_user_func_array($executable, $data);
        }
    }
}
PHP Cli Readline Component by bazzline.net API documentation generated by ApiGen