for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* This file is part of Aura for PHP.
* @license http://opensource.org/licenses/MIT MIT
*/
namespace Aura\Payload;
* A factory to create and return payload objects.
* @package Aura.Payload
class PayloadFactory
{
* Returns a new Payload object.
* @return Payload
public function newInstance()
return new Payload();
}