1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* File Examples.php
*
* @author Edward Pfremmer <epfremme@nerdery.com>
*/
namespace Epfremme\Swagger\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use JMS\Serializer\Annotation as JMS;
/**
* Class Examples
*
* @package Epfremme\Swagger
* @subpackage Entity
*/
class Examples
{
/**
* @JMS\Inline()
* @JMS\Since("2.0")
* @JMS\SerializedName("data")
* @JMS\Type("ArrayCollection<string,array>")
*
* @var ArrayCollection
*/
protected $examples;
/**
* @return ArrayCollection
*/
public function getExamples()
{
return $this->examples;
}
/**
* @param ArrayCollection $examples
* @return Examples
*/
public function setExamples(ArrayCollection $examples)
{
$this->examples = $examples;
return $this;
}
}