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