for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PlugHttp\Factory;
use PlugHttp\Body\TextPlain;
class TextPlainFactory implements Factory
{
public static function create()
return new TextPlain();
}