1 | <?php |
||
8 | class Rate extends BaseRate |
||
9 | { |
||
10 | /** |
||
11 | * Set source name. |
||
12 | * |
||
13 | * @param string $sourceName |
||
14 | * @return Rate Fluent interface. |
||
15 | */ |
||
16 | public function setSourceName($sourceName) |
||
21 | |||
22 | /** |
||
23 | * Set value. |
||
24 | * |
||
25 | * @param float $value |
||
26 | * @return Rate Fluent interface. |
||
27 | */ |
||
28 | public function setValue($value) |
||
33 | |||
34 | /** |
||
35 | * Set currency code. |
||
36 | * |
||
37 | * @param string $currencyCode |
||
38 | * @return Rate Fluent interface. |
||
39 | */ |
||
40 | public function setCurrencyCode($currencyCode) |
||
45 | |||
46 | /** |
||
47 | * Set rate type. |
||
48 | * |
||
49 | * @param string $rateType |
||
50 | * @return Rate Fluent interface. |
||
51 | */ |
||
52 | public function setRateType($rateType) |
||
57 | |||
58 | /** |
||
59 | * Set date. |
||
60 | * |
||
61 | * @param \DateTime $date |
||
62 | * @return Rate Fluent interface. |
||
63 | */ |
||
64 | public function setDate(\DateTime $date) |
||
69 | |||
70 | /** |
||
71 | * Set base currency code. |
||
72 | * |
||
73 | * @param string $baseCurrencyCode |
||
74 | * @return Rate Fluent interface. |
||
75 | */ |
||
76 | public function setBaseCurrencyCode($baseCurrencyCode) |
||
81 | |||
82 | /** |
||
83 | * Set created date. |
||
84 | * |
||
85 | * @param \DateTime $createdAt |
||
86 | * @return Rate Fluent interface. |
||
87 | */ |
||
88 | public function setCreatedAt(\DateTime $createdAt) |
||
93 | |||
94 | /** |
||
95 | * Set last modification date. |
||
96 | * |
||
97 | * @param \DateTime $modifiedAt |
||
98 | * @return Rate Fluent interface. |
||
99 | */ |
||
100 | public function setModifiedAt(\DateTime $modifiedAt) |
||
105 | |||
106 | public static function fromRateInterface(RateInterface $rate) |
||
119 | } |
||
120 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.