mageekguy\atoum\scripts\tagger\engine::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( mageekguy\atoum\adapter $adapter = null )
$adapter mageekguy\atoum\adapter
    public function __construct(atoum\adapter $adapter = null)
    {
        if ($adapter === null) {
            $adapter = new adapter();
        }
        $this->setAdapter($adapter)->setVersionPattern(static::defaultVersionPattern)->setChangelogName(static::defaultChangelogName)->setChangelogHeader(static::defaultChangelogHeader);
    }