isEmpty() публичный Метод

Determine if the collection is empty or not.
public isEmpty ( ) : boolean
Результат boolean
Пример #1
0
 public function testEmptyCollectionIsEmpty()
 {
     $c = new Collection();
     $this->assertTrue($c->isEmpty());
 }