for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mcorten87\rabbitmq_api\objects;
class Message extends BaseObject
{
public function __construct(string $value)
parent::__construct($value);
}
public function validate($value) : bool
if (empty($value)) {
return false;
return parent::validate($value);