for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright (c) 2010–2019 Ryan Parman <http://ryanparman.com>.
* Copyright (c) 2016–2019 Contributors.
*
* http://opensource.org/licenses/Apache2.0
*/
declare(strict_types=1);
namespace SimplePie\UtilityPack\Mixin;
* Shared code for working with raw feed content.
trait RawDocumentTrait
{
* The raw, unparsed contents of the feed's stream.
* @var string
protected $rawDocument;
* Retrieves the raw, unparsed contents of the feed's stream.
public function getRawDocument(): string
return $this->rawDocument;
}