File tree Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 19
19
use Illuminate \Support \Facades \Facade ;
20
20
21
21
/**
22
- * AWS SDK for PHP service provider for Laravel applications
22
+ * Facade for the AWS service
23
23
*/
24
24
class AwsFacade extends Facade
25
25
{
Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ class AwsServiceProvider extends ServiceProvider
31
31
const VERSION = '1.1.0 ' ;
32
32
33
33
/**
34
- * @inheritdoc
34
+ * Register the service provider.
35
+ *
36
+ * @return void
35
37
*/
36
38
public function register ()
37
39
{
@@ -60,10 +62,22 @@ public function register()
60
62
}
61
63
62
64
/**
63
- * @inheritdoc
65
+ * Bootstrap the application events.
66
+ *
67
+ * @return void
64
68
*/
65
69
public function boot ()
66
70
{
67
71
$ this ->package ('aws/aws-sdk-php-laravel ' , 'aws ' );
68
72
}
73
+
74
+ /**
75
+ * Get the services provided by the provider.
76
+ *
77
+ * @return array
78
+ */
79
+ public function provides ()
80
+ {
81
+ return array ('aws ' );
82
+ }
69
83
}
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * Copyright 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License").
6
+ * You may not use this file except in compliance with the License.
7
+ * A copy of the License is located at
8
+ *
9
+ * http://aws.amazon.com/apache2.0
10
+ *
11
+ * or in the "license" file accompanying this file. This file is distributed
12
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
+ * express or implied. See the License for the specific language governing
14
+ * permissions and limitations under the License.
15
+ */
2
16
3
17
return array (
4
18
You can’t perform that action at this time.
0 commit comments