getWrapped() public method

Returns the code wrapped in php tags as written to the cache, ready to be included.
public getWrapped ( string $entryIdentifier ) : string
$entryIdentifier string
return string
 /**
  * Gets an entry from the cache or NULL if the
  * entry does not exist.
  *
  * @param string $name
  * @return string
  */
 public function get($name)
 {
     if ($this->flowCache->has($name)) {
         $this->flowCache->requireOnce($name);
     }
     return $this->flowCache->getWrapped($name);
 }