Issues (36)

src/Result/Metadata.php (1 issue)

1
<?php
2
3
namespace DevoraliveCachet\Result;
4
5
use JMS\Serializer\Annotation as JMS;
6
7
/**
8
 * Class Metadata
9
 * @package DevoraliveCachet\Result
10
 */
11
class Metadata
12
{
13
14
    /**
15
     * @var Pagination
16
     * @JMS\Type("DevoraliveCachet\Result\Pagination")
17
     */
18
    private $pagination;
0 ignored issues
show
The private property $pagination is not used, and could be removed.
Loading history...
19
}
20