Skip to content

Commit 831d171

Browse files
abr4xasgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 26cb69f commit 831d171

File tree

6 files changed

+4
-5
lines changed

6 files changed

+4
-5
lines changed

.php-cs-fixer.cache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"php":"8.1.8","version":"3.9.5","indent":" ","lineEnding":"\n","rules":{"blank_line_after_opening_tag":true,"blank_line_between_import_groups":true,"braces":{"allow_single_line_anonymous_class_with_empty_body":true},"class_definition":{"inline_constructor_arguments":false,"space_before_parenthesis":true},"compact_nullable_typehint":true,"declare_equal_normalize":true,"lowercase_cast":true,"lowercase_static_reference":true,"new_with_braces":true,"no_blank_lines_after_class_opening":true,"no_leading_import_slash":true,"no_whitespace_in_blank_line":true,"ordered_class_elements":{"order":["use_trait"]},"ordered_imports":{"sort_algorithm":"alpha"},"return_type_declaration":true,"short_scalar_cast":true,"single_blank_line_before_namespace":true,"single_import_per_statement":{"group_to_single_imports":false},"single_trait_insert_per_statement":true,"ternary_operator_spaces":true,"visibility_required":true,"blank_line_after_namespace":true,"constant_case":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_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_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"no_unused_imports":true,"not_operator_with_successor_space":true,"trailing_comma_in_multiline":true,"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":{"method":"one"}}},"hashes":{"src\/SimpleCrmServiceProvider.php":944153556,"src\/Models\/Enums\/Lead\/LeadStatus.php":3241539491,"src\/Models\/Enums\/Lead\/LeadType.php":853698985,"src\/Models\/Enums\/StatusEnum.php":3285058312,"src\/Models\/Enums\/Note\/NotePriority.php":2745883000,"src\/Models\/Service.php":2530960531,"src\/Models\/Note.php":2044895274,"src\/Models\/Lead.php":4234323445,"tests\/Pest.php":2378833050,"tests\/Unit\/NoteTest.php":2825187343,"tests\/Unit\/LeadTest.php":560166750,"tests\/Unit\/ServiceTest.php":303507015,"tests\/Models\/User.php":2385336270,"tests\/TestCase.php":1234141560}}

src/Models/Enums/Note/NotePriority.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace Tepuilabs\SimpleCrm\Models\Enums\Note;
34

45
use Spatie\Enum\Laravel\Enum;

src/SimpleCrmServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class SimpleCrmServiceProvider extends PackageServiceProvider
99
{
10-
1110
public function configurePackage(Package $package): void
1211
{
1312
/*

tests/Models/User.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace Tepuilabs\SimpleCrm\Tests\Models;
34

45
use Illuminate\Database\Eloquent\Factories\HasFactory;

tests/Unit/NoteTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
use Tepuilabs\SimpleCrm\Models\Enums\Note\NotePriority;
44
use Tepuilabs\SimpleCrm\Models\Lead;
5-
use \Tepuilabs\SimpleCrm\Models\Note;
5+
use Tepuilabs\SimpleCrm\Models\Note;
66
use Tepuilabs\SimpleCrm\Tests\Models\User;
77

88
beforeEach(function () {
9-
109
$this->user = User::factory()->create();
1110
$this->lead = Lead::factory()
1211
->organicType()
@@ -18,7 +17,6 @@
1817
'body' => 'Some body',
1918
'lead_id' => $this->lead->id,
2019
]);
21-
2220
});
2321

2422
test('if a user can create a note', function () {

tests/Unit/ServiceTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use Tepuilabs\SimpleCrm\Models\Service;
44

55
test('it can create services', function () {
6-
76
$service = Service::factory()->create();
87

98
$this->assertInstanceOf(Service::class, $service);

0 commit comments

Comments
 (0)