for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Puzzle\AMQP\Messages\Bodies;
use Puzzle\AMQP\Messages\Body;
use Puzzle\AMQP\Messages\ContentType;
use Puzzle\AMQP\Messages\Footprintable;
class Text implements Body, Footprintable
{
private
$content;
$content
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
public function __construct($text)
$this->changeText($text);
}
public function format()
return implode("\n", $this->content);
public function footprint()
return sha1($this->format());
public function changeText($text)
if(! is_array($text))
$text = array($text);
$this->content = $text;
public function append($text)
if(is_array($text))
$this->content = array_merge($this->content, $text);
return;
$this->content[] = $text;
public function getContentType()
return ContentType::TEXT;
public function __toString()
return $this->format();
public function decode()
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.