public function testEmptyArrayReceived()
 {
     $this->assertEquals(null, StringCollection::init([]));
 }
Exemplo n.º 2
0
 /**
  * Set the sort property
  *
  * @param string[]|string|null $sort
  * @return $this
  */
 public function setSort($sort)
 {
     $this->sort = StringCollection::init($sort);
     return $this;
 }