Dotink\Parody\Mime::__construct PHP 메소드

__construct() 공개 메소드

Create a new Mime.
public __construct ( string | object $target = NULL ) : void
$target string | object A class name or quip to work with.
리턴 void
    public function __construct($target = NULL)
    {
        if (is_object($target)) {
            $this->resolve($target);
        } else {
            $this->class = self::qualify($target);
        }
    }