mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-13 12:33:52 +01:00
15 lines
207 B
PHP
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();
|
|
}
|