Drest\Service::getRepresentation PHP Method

getRepresentation() public method

Get the predetermined representation
public getRepresentation ( ) : DrestCommon\Representation\AbstractRepresentation
return DrestCommon\Representation\AbstractRepresentation
    public function getRepresentation()
    {
        return $this->representation;
    }

Usage Example

コード例 #1
0
ファイル: AbstractAction.php プロジェクト: jdrich/drest
 /**
  * Get the predetermined representation
  * @return AbstractRepresentation
  */
 public function getRepresentation()
 {
     return $this->service->getRepresentation();
 }