Skip to content

Commit 62ea033

Browse files
SocolaDaiCagithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0c19186 commit 62ea033

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.php-cs-fixer.cache

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"php":"8.2.8","version":"3.22.0","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"class_definition":true,"constant_case":true,"control_structure_braces":true,"control_structure_continuation_position":true,"curly_braces_position":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_multiple_statements_per_line":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"statement_indentation":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":{"elements":["method","property"]},"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"imports_order":["class","function","const"],"sort_algorithm":"alpha"},"no_unused_imports":true,"not_operator_with_successor_space":true,"trailing_comma_in_multiline":{"after_heredoc":true,"elements":["arrays","parameters"]},"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"blank_line_before_statement":{"statements":["break","continue","declare","return","throw","try"]},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true,"class_attributes_separation":{"elements":{"const":"one","method":"one","property":"one","trait_import":"one","case":"none"}},"single_trait_insert_per_statement":true},"hashes":{"src\/HasTablePrefix.php":"e0100941b714da1d335d4cd307fd6deb","tests\/ExampleTest.php":"eaff326f6cdabfd706b4d60851c5efda","tests\/Models\/Prefix.php":"38b2af1925b788b6ce9082c0121cc2dd","tests\/Models\/Category.php":"8ac5fd47f0a4e33f97d29413e98c7702","tests\/Models\/Post.php":"fb68189fff9480c73636c72adca8e5f9","tests\/Models\/CategoryPost.php":"2bb2da32f8657b90d0ed4f45cc27d7af","tests\/SimpleTest.php":"f32af95f197f3d904d3fafc79859f84d"}}
1+
{"php":"8.2.9","version":"3.25.0","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"class_definition":true,"constant_case":true,"control_structure_braces":true,"control_structure_continuation_position":true,"curly_braces_position":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_multiple_statements_per_line":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"spaces_inside_parentheses":true,"statement_indentation":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":{"elements":["method","property"]},"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"imports_order":["class","function","const"],"sort_algorithm":"alpha"},"no_unused_imports":true,"not_operator_with_successor_space":true,"trailing_comma_in_multiline":{"after_heredoc":true,"elements":["arrays","parameters"]},"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"blank_line_before_statement":{"statements":["break","continue","declare","return","throw","try"]},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true,"class_attributes_separation":{"elements":{"const":"one","method":"one","property":"one","trait_import":"one","case":"none"}},"single_trait_insert_per_statement":true},"hashes":{"src\/HasTablePrefix.php":"9c6be30c9e82aaf8b5f714e3f9722265","tests\/ExampleTest.php":"062b35d2093905b9dbf51a64fefd0872","tests\/Models\/Prefix.php":"217dff5f10fb7e8d4ec8f3724e8f7b03","tests\/Models\/Category.php":"c0cf371936d3d4ad77662f5d922acc00","tests\/Models\/Post.php":"f4527e67bd384f8efffb3ab6cbc5c6c0","tests\/Models\/CategoryPost.php":"a499484e674687d4fbf14fd11209f2fb","tests\/SimpleTest.php":"0b542fede9361306f166a6731391fcc2"}}

src/HasTablePrefix.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function getTable()
3030
return $this->tableWithPrefix;
3131
}
3232

33-
if ($this instanceof Pivot && !isset($this->table)) {
33+
if ($this instanceof Pivot && ! isset($this->table)) {
3434
$this->setTable($this->getPrefix().str_replace(
3535
'\\',
3636
'',

0 commit comments

Comments
 (0)