for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the BEAR.Middleware package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\Middleware\Module;
use Ray\Di\ProviderInterface;
class StreamProvider implements ProviderInterface
{
* {@inheritdoc}
public function get()
return fopen('php://temp/', 'r+');
}