isEmpty() public method

Answer whether this ValueHolder is empty.
public isEmpty ( ) : boolean
return boolean
Example #1
0
 /**
  * @dataProvider getInitialValues
  */
 public function testIsEmpty($initialValues)
 {
     $valueHolder = new ValueHolder($initialValues);
     $this->assertEquals(empty($initialValues), $valueHolder->isEmpty());
 }