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;
class Binary implements Body
{
private
$body;
$body
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($content)
$this->changeContent($content);
}
public function format()
return $this->body;
public function footprint()
return uniqid(true);
public function changeContent($content)
$this->body = $content;
public function getContentType()
return ContentType::BINARY;
public function __toString()
return sprintf(
'<binary stream of %d bytes>',
strlen($this->body)
);
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.