__construct() 공개 메소드

Constructor.
public __construct ( Cocur\Slugify\SlugifyInterface $slugify )
$slugify Cocur\Slugify\SlugifyInterface
예제 #1
0
 /**
  * Constructor.
  *
  * @param string $destPath
  */
 public function __construct($destPath)
 {
     $this->destPath = $destPath;
     parent::__construct(Slugify::create(['regexp' => Page::SLUGIFY_PATTERN]));
 }