rector/stubs/GuzzleHttp/Message/MessageInterface.php
2019-10-13 08:09:08 +02:00

15 lines
207 B
PHP

<?php
declare(strict_types=1);
namespace GuzzleHttp\Message;
if (interface_exists('GuzzleHttp\Message\MessageInterface')) {
return;
}
interface MessageInterface
{
public function getMessage();
}