Skip to content

Commit 108b10b

Browse files
committed
Fix new typos
1 parent 998f757 commit 108b10b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### :boom: BREAKING CHANGES
99
- due to [`d9e2469`](https://github.com/wrk-flow/larastrict/commit/d9e24693289f8731e28e63c55c884a638874db10) - Fix deleting cache in context and drop tags usage by default *(commit by [@pionl](https://github.com/pionl))*:
1010

11-
Drop default tag for context cache - Laravel offical recommendation is not to use tags with redis
11+
Drop default tag for context cache - Laravel official recommendation is not to use tags with redis
1212

1313

1414
### :bug: Bug Fixes
@@ -65,7 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6565
### :boom: BREAKING CHANGES
6666
- due to [`dcb79f3`](https://github.com/wrk-flow/larastrict/commit/dcb79f34653cfbb32a5d1dbd13c726704b665457) - OrderByValuesScope is now from ASC to DESC order of given values *(commit by [@pionl](https://github.com/pionl))*:
6767

68-
Values must be ordered from prefered order to last wanted order (now it was incorrectly used)
68+
Values must be ordered from preferred order to last wanted order (now it was incorrectly used)
6969

7070

7171
### :bug: Bug Fixes
@@ -515,7 +515,7 @@ Due the changes the expectation logic has been changed and you need to update yo
515515

516516
### :bug: Bug Fixes
517517
- [`36197b4`](https://github.com/wrk-flow/larastrict/commit/36197b4f0163bc26d6daa563836f3efe87681e50) - **Testing**: Fix artisan usage with larastrict commands *(commit by [@pionl](https://github.com/pionl))*
518-
- [`0cd12fe`](https://github.com/wrk-flow/larastrict/commit/0cd12fe9abbb3cc3ebeb6f82aea51b0f47467cdb) - **Testing**: Update dependencies and fix phpstan warnning on latest testbench version *(commit by [@pionl](https://github.com/pionl))*
518+
- [`0cd12fe`](https://github.com/wrk-flow/larastrict/commit/0cd12fe9abbb3cc3ebeb6f82aea51b0f47467cdb) - **Testing**: Update dependencies and fix phpstan warning on latest testbench version *(commit by [@pionl](https://github.com/pionl))*
519519

520520

521521
## [v0.0.15] - 2022-10-13
@@ -625,7 +625,7 @@ Due the changes the expectation logic has been changed and you need to update yo
625625

626626
## [v0.0.2] - 2022-09-27
627627
### :sparkles: New Features
628-
- [`428e83c`](https://github.com/wrk-flow/larastrict/commit/428e83cf24bd94a5e952acd7736fbd264f73f9b7) - Add ablity to register custom route with action class for reusability *(commit by [@pionl](https://github.com/pionl))*
628+
- [`428e83c`](https://github.com/wrk-flow/larastrict/commit/428e83cf24bd94a5e952acd7736fbd264f73f9b7) - Add ability to register custom route with action class for reusability *(commit by [@pionl](https://github.com/pionl))*
629629

630630

631631
[v0.0.2]: https://github.com/wrk-flow/larastrict/compare/v0.0.1...v0.0.2

src/Console/Services/ScheduleService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* - Adds ability to force all commands in queue
1717
* - Force logging of output to running process.
1818
* - Ensure jobs are unique.
19-
* @interal
19+
* @internal
2020
*/
2121
class ScheduleService implements ScheduleServiceContract
2222
{

tests/Unit/Queue/Actions/RunOrQueueJobActionTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function dataNoCommand(): array
9292
shouldQueue: false
9393
),
9494
);
95-
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be trigered');
95+
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be triggered');
9696
}],
9797
];
9898
}
@@ -171,7 +171,7 @@ public function dataWithCommand(): array
171171
shouldQueue: false
172172
),
173173
);
174-
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be trigered');
174+
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be triggered');
175175
}],
176176
];
177177
}
@@ -252,7 +252,7 @@ public function dataWithCommandAndQueue(): array
252252
shouldQueue: false
253253
),
254254
);
255-
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be trigered');
255+
Assert::assertTrue($setupBeforeRunCalled, 'setupBeforeRun should be triggered');
256256
}],
257257
];
258258
}

0 commit comments

Comments
 (0)