15 lines
197 B
PHP
15 lines
197 B
PHP
<?php
|
|
|
|
namespace MercadoPago\Annotation;
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* @Annotation
|
|
*/
|
|
class RequestParam extends Annotation
|
|
{
|
|
/**
|
|
* @var
|
|
*/
|
|
public $param;
|
|
} |