Skip to content

Commit fab5edf

Browse files
authored
feat: Add support for Laravel service config (#57)
1 parent 6c44048 commit fab5edf

File tree

3 files changed

+64
-23
lines changed

3 files changed

+64
-23
lines changed

.php-cs-fixer.php

+50-22
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,9 @@
1717
'return',
1818
],
1919
],
20-
'braces' => [
21-
'allow_single_line_anonymous_class_with_empty_body' => true,
22-
'allow_single_line_closure' => true,
23-
'position_after_control_structures' => 'same',
24-
'position_after_functions_and_oop_constructs' => 'next',
25-
'position_after_anonymous_constructs' => 'next',
26-
],
27-
'curly_braces_position' => [
20+
'blank_line_between_import_groups' => true,
21+
'blank_lines_before_namespace' => true,
22+
'braces_position' => [
2823
'control_structures_opening_brace' => 'same_line',
2924
'functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
3025
'anonymous_functions_opening_brace' => 'same_line',
@@ -53,31 +48,36 @@
5348
'spacing' => 'one',
5449
],
5550
'constant_case' => ['case' => 'lower'],
51+
'control_structure_braces' => true,
52+
'control_structure_continuation_position' => [
53+
'position' => 'same_line',
54+
],
5655
'declare_equal_normalize' => true,
56+
'declare_parentheses' => true,
5757
'elseif' => true,
5858
'encoding' => true,
5959
'full_opening_tag' => true,
6060
'fully_qualified_strict_types' => true,
6161
'function_declaration' => true,
62-
'function_typehint_space' => true,
6362
'general_phpdoc_tag_rename' => true,
6463
'heredoc_to_nowdoc' => true,
6564
'include' => true,
6665
'increment_style' => ['style' => 'post'],
6766
'indentation_type' => true,
6867
'integer_literal_case' => true,
6968
'lambda_not_used_import' => true,
70-
'linebreak_after_opening_tag' => true,
7169
'line_ending' => true,
70+
'linebreak_after_opening_tag' => true,
7271
'list_syntax' => true,
7372
'lowercase_cast' => true,
7473
'lowercase_keywords' => true,
7574
'lowercase_static_reference' => true,
76-
'magic_method_casing' => true,
7775
'magic_constant_casing' => true,
76+
'magic_method_casing' => true,
7877
'method_argument_space' => [
7978
'on_multiline' => 'ignore',
8079
],
80+
'method_chaining_indentation' => true,
8181
'multiline_whitespace_before_semicolons' => [
8282
'strategy' => 'no_multi_line',
8383
],
@@ -105,56 +105,74 @@
105105
'use' => 'echo',
106106
],
107107
'no_multiline_whitespace_around_double_arrow' => true,
108+
'no_multiple_statements_per_line' => true,
108109
'no_short_bool_cast' => true,
109110
'no_singleline_whitespace_before_semicolons' => true,
110-
'no_spaces_after_function_name' => true,
111111
'no_space_around_double_colon' => true,
112+
'no_spaces_after_function_name' => true,
112113
'no_spaces_around_offset' => [
113114
'positions' => ['inside', 'outside'],
114115
],
115-
'no_spaces_inside_parenthesis' => true,
116-
'no_trailing_comma_in_list_call' => true,
117-
'no_trailing_comma_in_singleline_array' => true,
116+
'no_superfluous_phpdoc_tags' => [
117+
'allow_mixed' => true,
118+
'allow_unused_params' => true,
119+
],
120+
'no_trailing_comma_in_singleline' => true,
118121
'no_trailing_whitespace' => true,
119122
'no_trailing_whitespace_in_comment' => true,
120123
'no_unneeded_control_parentheses' => [
121124
'statements' => ['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case', 'yield'],
122125
],
123-
'no_unneeded_curly_braces' => true,
126+
'no_unneeded_braces' => true,
127+
'no_unreachable_default_argument_value' => true,
124128
'no_unset_cast' => true,
125129
'no_unused_imports' => true,
126-
'no_unreachable_default_argument_value' => true,
127130
'no_useless_return' => true,
128131
'no_whitespace_before_comma_in_array' => true,
129132
'no_whitespace_in_blank_line' => true,
130133
'normalize_index_brace' => true,
131134
'not_operator_with_successor_space' => true,
135+
'nullable_type_declaration' => true,
136+
'nullable_type_declaration_for_default_null_value' => true,
132137
'object_operator_without_whitespace' => true,
133-
'ordered_imports' => ['sort_algorithm' => 'alpha'],
134-
'psr_autoloading' => false,
138+
'ordered_imports' => ['sort_algorithm' => 'alpha', 'imports_order' => ['const', 'class', 'function']],
139+
'ordered_interfaces' => true,
140+
'ordered_traits' => true,
135141
'phpdoc_indent' => true,
136142
'phpdoc_inline_tag_normalizer' => true,
137143
'phpdoc_no_access' => true,
138144
'phpdoc_no_package' => true,
139145
'phpdoc_no_useless_inheritdoc' => true,
146+
'phpdoc_order' => [
147+
'order' => ['param', 'return', 'throws'],
148+
],
140149
'phpdoc_scalar' => true,
150+
'phpdoc_separation' => [
151+
'groups' => [
152+
['deprecated', 'link', 'see', 'since'],
153+
['author', 'copyright', 'license'],
154+
['category', 'package', 'subpackage'],
155+
['property', 'property-read', 'property-write'],
156+
['param', 'return'],
157+
],
158+
],
141159
'phpdoc_single_line_var_spacing' => true,
142160
'phpdoc_summary' => false,
143-
'phpdoc_to_comment' => false,
144161
'phpdoc_tag_type' => [
145162
'tags' => [
146163
'inheritdoc' => 'inline',
147164
],
148165
],
166+
'phpdoc_to_comment' => false,
149167
'phpdoc_trim' => true,
150168
'phpdoc_types' => true,
151169
'phpdoc_var_without_name' => true,
170+
'psr_autoloading' => false,
152171
'return_type_declaration' => ['space_before' => 'none'],
153172
'self_accessor' => false,
154173
'short_scalar_cast' => true,
155174
'simplified_null_return' => false,
156175
'single_blank_line_at_eof' => true,
157-
'single_blank_line_before_namespace' => true,
158176
'single_class_element_per_statement' => [
159177
'elements' => ['const', 'property'],
160178
],
@@ -164,9 +182,10 @@
164182
'comment_types' => ['hash'],
165183
],
166184
'single_quote' => true,
185+
'single_space_around_construct' => true,
167186
'space_after_semicolon' => true,
168187
'standardize_not_equals' => true,
169-
'statement_indentation' => false,
188+
'statement_indentation' => true,
170189
'switch_case_semicolon_to_colon' => true,
171190
'switch_case_space' => true,
172191
'ternary_operator_spaces' => true,
@@ -178,12 +197,21 @@
178197
'elements' => ['method', 'property'],
179198
],
180199
'whitespace_after_comma_in_array' => true,
200+
'yoda_style' => [
201+
'always_move_variable' => false,
202+
'equal' => false,
203+
'identical' => false,
204+
'less_and_greater' => false,
205+
],
181206
];
182207

183208
$finder = Finder::create()
184209
->name('*.php')
210+
->notName('*.blade.php')
185211
->exclude([
186212
'vendor',
213+
'storage',
214+
'bootstrap/cache',
187215
])
188216
->ignoreDotFiles(true)
189217
->ignoreVCS(true);

src/ResendServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function configure(): void
5151
protected function bindResendClient(): void
5252
{
5353
$this->app->singleton(ClientContract::class, static function (): Client {
54-
$apiKey = config('resend.api_key');
54+
$apiKey = config('resend.api_key') ?? config('services.resend.key');
5555

5656
if (! is_string($apiKey)) {
5757
throw ApiKeyIsMissing::create();

tests/ResendServiceProvider.php

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
app()->get('resend');
99
})->throws(ApiKeyIsMissing::class);
1010

11+
it('can bind the Resend Client using the service config', function () {
12+
$app = app();
13+
$app->get('config')->set('services', [
14+
'resend' => [
15+
'key' => 're_test',
16+
],
17+
]);
18+
19+
$resend = $app->get('resend');
20+
21+
expect($resend)->toBeInstanceOf(Client::class);
22+
});
23+
1124
it('provides', function () {
1225
$provider = app()->resolveProvider(ResendServiceProvider::class);
1326

0 commit comments

Comments
 (0)