Dotink\Parody\Mime::__construct PHP Method

__construct() public method

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