@@ -10,45 +10,45 @@ |
||
10 | 10 | */ |
11 | 11 | class UpdatesManager |
12 | 12 | { |
13 | - /** |
|
14 | - * Update Repository. |
|
15 | - * |
|
16 | - * @var mixed |
|
17 | - **/ |
|
18 | - public $repository; |
|
19 | - |
|
20 | - /** |
|
21 | - * Create a new instance of the UpdatesManager::class. |
|
22 | - * |
|
23 | - * @param RepositoryContract $repository description |
|
24 | - **/ |
|
25 | - public function __construct(RepositoryContract $repository) |
|
26 | - { |
|
27 | - $this->repository = $repository; |
|
28 | - } |
|
13 | + /** |
|
14 | + * Update Repository. |
|
15 | + * |
|
16 | + * @var mixed |
|
17 | + **/ |
|
18 | + public $repository; |
|
19 | + |
|
20 | + /** |
|
21 | + * Create a new instance of the UpdatesManager::class. |
|
22 | + * |
|
23 | + * @param RepositoryContract $repository description |
|
24 | + **/ |
|
25 | + public function __construct(RepositoryContract $repository) |
|
26 | + { |
|
27 | + $this->repository = $repository; |
|
28 | + } |
|
29 | 29 | |
30 | 30 | //end __construct() |
31 | 31 | |
32 | - /** |
|
33 | - * Determin if the customer has already verified the product. |
|
34 | - * |
|
35 | - * @param string $purchaseKey |
|
36 | - **/ |
|
37 | - public function verifyCustomer($purchaseKey) |
|
38 | - { |
|
39 | - $this->repository->findCustomer($purchaseKey); |
|
40 | - } |
|
32 | + /** |
|
33 | + * Determin if the customer has already verified the product. |
|
34 | + * |
|
35 | + * @param string $purchaseKey |
|
36 | + **/ |
|
37 | + public function verifyCustomer($purchaseKey) |
|
38 | + { |
|
39 | + $this->repository->findCustomer($purchaseKey); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | //end verifyCustomer() |
43 | 43 | |
44 | - /** |
|
45 | - * Get a specific update version. |
|
46 | - * |
|
47 | - * @param string $version Build version |
|
48 | - **/ |
|
49 | - public function getRelease($version) |
|
50 | - { |
|
51 | - } |
|
44 | + /** |
|
45 | + * Get a specific update version. |
|
46 | + * |
|
47 | + * @param string $version Build version |
|
48 | + **/ |
|
49 | + public function getRelease($version) |
|
50 | + { |
|
51 | + } |
|
52 | 52 | |
53 | 53 | //end getRelease() |
54 | 54 | }//end class |