1 | <?php |
||
16 | class IndeterminateForecastProvider |
||
17 | { |
||
18 | /** @var RegistryInterface */ |
||
19 | protected $doctrine; |
||
20 | |||
21 | /** @var AclHelper */ |
||
22 | protected $aclHelper; |
||
23 | |||
24 | /** @var OwnerHelper */ |
||
25 | protected $ownerHelper; |
||
26 | |||
27 | /** @var FilterProcessor */ |
||
28 | protected $filterProcessor; |
||
29 | |||
30 | /** @var NumberFormatter */ |
||
31 | protected $numberFormatter; |
||
32 | |||
33 | /** @var array */ |
||
34 | protected $data = []; |
||
35 | |||
36 | /** |
||
37 | * @param RegistryInterface $doctrine |
||
38 | * @param AclHelper $aclHelper |
||
39 | * @param OwnerHelper $ownerHelper |
||
40 | * @param FilterProcessor $filterProcessor |
||
41 | * @param NumberFormatter $numberFormatter |
||
42 | */ |
||
43 | public function __construct( |
||
56 | |||
57 | /** |
||
58 | * @param WidgetOptionBag $widgetOptions |
||
59 | * @param string $dataKey |
||
60 | * |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getForecastOfOpportunitiesValues(WidgetOptionBag $widgetOptions, $dataKey) |
||
74 | |||
75 | /** |
||
76 | * @param array |
||
77 | * @param array |
||
78 | * |
||
79 | * @return ['totalIndeterminate' => <double>, 'weightedIndeterminate' => <double>] |
||
|
|||
80 | */ |
||
81 | public function getIndeterminateData(array $ownerIds, array $queryFilter = null) |
||
126 | |||
127 | /** |
||
128 | * @return OpportunityRepository |
||
129 | */ |
||
130 | protected function getOpportunityRepository() |
||
134 | } |
||
135 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.