HeadFilter::setLines PHP Method

setLines() public method

Sets the number of lines to be returned in the filtered stream.
public setLines ( integer $lines )
$lines integer the number of lines to be returned in the filtered stream.
    function setLines($lines)
    {
        $this->_lines = (int) $lines;
    }

Usage Example

Example #1
0
 /**
  * Creates a new HeadFilter using the passed in
  * Reader for instantiation.
  * 
  * @param object A Reader object providing the underlying stream.
  *            Must not be <code>null</code>.
  * 
  * @return object A new filter based on this configuration, but filtering
  *         the specified reader.
  */
 function chain(Reader $reader)
 {
     $newFilter = new HeadFilter($reader);
     $newFilter->setLines($this->getLines());
     $newFilter->setInitialized(true);
     $newFilter->setProject($this->getProject());
     return $newFilter;
 }