예제 #1
0
 public function __construct($value)
 {
     parent::__construct($value);
 }
 public function __construct($value)
 {
     parent::__construct($value);
     $this->caseInsensitive = false;
 }
예제 #3
0
 public function __construct($value, $suffix)
 {
     parent::__construct($value);
     $this->suffix = $suffix;
 }
예제 #4
0
 public function __construct($value)
 {
     parent::__construct($value);
     $this->slugify = new Slugify(['lowercase' => false]);
 }
예제 #5
0
 public function testTransformer()
 {
     $t = new Transformer("dummy-value");
     $this->assertEquals("dummy-value", $t->getValue());
 }
예제 #6
0
 public function __construct($value, $numberToTruncate)
 {
     parent::__construct($value);
     $this->numberToTruncate = $numberToTruncate;
 }
예제 #7
0
 public function __construct($value, $prefix)
 {
     parent::__construct($value);
     $this->prefix = $prefix;
 }
예제 #8
0
 public function __construct($value, $repeatNum)
 {
     parent::__construct($value);
     $this->repeatNum = $repeatNum;
 }