コード例 #1
0
 public function __construct($value, $suffix)
 {
     parent::__construct($value);
     $this->suffix = $suffix;
 }
コード例 #2
0
ファイル: WordCount.php プロジェクト: jasonlam604/stringizer
 public function __construct($value)
 {
     parent::__construct($value);
 }
コード例 #3
0
 public function __construct($value)
 {
     parent::__construct($value);
     $this->caseInsensitive = false;
 }
コード例 #4
0
 public function __construct($value)
 {
     parent::__construct($value);
     $this->slugify = new Slugify(['lowercase' => false]);
 }
コード例 #5
0
ファイル: Truncate.php プロジェクト: jasonlam604/stringizer
 public function __construct($value, $numberToTruncate)
 {
     parent::__construct($value);
     $this->numberToTruncate = $numberToTruncate;
 }
コード例 #6
0
ファイル: EnsureLeft.php プロジェクト: jasonlam604/stringizer
 public function __construct($value, $prefix)
 {
     parent::__construct($value);
     $this->prefix = $prefix;
 }
コード例 #7
0
ファイル: Repeat.php プロジェクト: jasonlam604/stringizer
 public function __construct($value, $repeatNum)
 {
     parent::__construct($value);
     $this->repeatNum = $repeatNum;
 }