for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Queryr\Replicator\EntitySource\Api;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class Http {
* @param string $url
* @return string|false
public function get( string $url ) {
return file_get_contents( $url );
}