Dotink\Parody\Mime::__construct PHP Méthode

__construct() public méthode

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