Skip to content

Commit

Permalink
Fixing AbstractEntityBodyDecorator
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Mar 10, 2013
1 parent 3e2f0d9 commit 7198817
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions AbstractEntityBodyDecorator.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ public function __call($method, array $args = null)
return call_user_func_array(array($this->body, $method), $args); return call_user_func_array(array($this->body, $method), $args);
} }


/**
* {@inheritdoc}
* @codeCoverageIgnore
*/
public function close()
{
return $this->body->close();
}

/** /**
* {@inheritdoc} * {@inheritdoc}
* @codeCoverageIgnore * @codeCoverageIgnore
Expand Down Expand Up @@ -206,6 +215,14 @@ public function isConsumed()
return $this->body->isConsumed(); return $this->body->isConsumed();
} }


/**
* {@inheritdoc}
*/
public function feof()
{
return $this->body->feof();
}

/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
Expand Down Expand Up @@ -266,4 +283,30 @@ public function ftell()
{ {
return $this->body->ftell(); return $this->body->ftell();
} }

/**
* {@inheritdoc}
* @codeCoverageIgnore
*/
public function getCustomData($key)
{
return $this->body->getCustomData($key);
}

/**
* {@inheritdoc}
* @codeCoverageIgnore
*/
public function setCustomData($key, $value)
{
return $this->body->setCustomData($key, $value);
}

/**
* {@inheritdoc}
*/
public function readLine($maxLength = null)
{
return $this->body->readLine($maxLength);
}
} }

0 comments on commit 7198817

Please sign in to comment.