Skip to content

Commit

Permalink
add natural_language_join helper; cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanenko3 committed Oct 5, 2022
1 parent 23f33d7 commit 22c1308
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 87 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
"php": ">=8.0",
"ext-json": "*",
"ext-openssl": "*",
"laravel/framework": "^9.0",
"hashids/hashids": "^4.1",
"laravel/framework": "^9.0",
"laravel/pint": "^1.2",
"ramsey/uuid": "^4.0"
},
"autoload": {
Expand Down
31 changes: 31 additions & 0 deletions pint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"preset": "laravel",
"rules": {
"concat_space": {
"spacing": "one"
},
"group_import": true,
"single_import_per_statement": false,
"no_space_around_double_colon": true,
"types_spaces": {
"space": "single"
},
"operator_linebreak": {
"position": "beginning"
},
"single_quote": {
"strings_containing_single_quote_chars": true
},
"blank_line_before_statement": {
"statements": [
"break",
"continue",
"declare",
"return",
"throw",
"try"
]
},
"not_operator_with_successor_space": false
}
}
Loading

0 comments on commit 22c1308

Please sign in to comment.