2014-02-18 18:15:12 +01:00
|
|
|
<?php
|
|
|
|
namespace cURL;
|
|
|
|
|
|
|
|
use Symfony\Component\EventDispatcher\Event as SymfonyEvent;
|
|
|
|
|
|
|
|
class Event extends SymfonyEvent
|
|
|
|
{
|
2014-05-27 10:59:00 +02:00
|
|
|
/** @var Response $response */
|
|
|
|
public $response = null;
|
2014-02-18 18:15:12 +01:00
|
|
|
}
|