This repository was archived by the owner on Apr 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## Unreleased
11
11
12
+ ## v5.5.0
13
+
14
+ ### Added
15
+
16
+ - Add ` CoordinateSystem48Well `
17
+
12
18
## v5.4.0
13
19
14
20
### Added
15
21
16
- - Add ` MicroplateSet ` possibility to calculate a ` Location ` within this set by a position
22
+ - Add ` MicroplateSet ` possibility to calculate a ` Location ` within this set by a position
17
23
18
24
## v5.3.0
19
25
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ coverage: vendor ## Collects coverage from running unit tests with phpunit
13
13
14
14
.PHONY : fix
15
15
fix : vendor # # Apply automatic code fixes
16
- vendor/bin/php-cs-fixer fix
17
16
vendor/bin/rector process
17
+ vendor/bin/php-cs-fixer fix
18
18
19
19
.PHONY : infection
20
20
infection : vendor # # Runs mutation tests with infection
Original file line number Diff line number Diff line change 25
25
"infection/infection" : " ~0.25" ,
26
26
"jangregor/phpstan-prophecy" : " ^1" ,
27
27
"mll-lab/graphql-php-scalars" : " ^6" ,
28
- "mll-lab/php-cs-fixer-config" : " ^4.3 " ,
28
+ "mll-lab/php-cs-fixer-config" : " ^5 " ,
29
29
"mll-lab/rector-config" : " ^2" ,
30
30
"nunomaduro/larastan" : " ^1 || ^2" ,
31
31
"orchestra/testbench" : " ^5 || ^6 || ^7 || ^8" ,
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace Mll \Microplate ;
4
+
5
+ final class CoordinateSystem48Well extends CoordinateSystem
6
+ {
7
+ public function rows (): array
8
+ {
9
+ return range ('A ' , 'F ' );
10
+ }
11
+
12
+ public function columns (): array
13
+ {
14
+ return range (1 , 8 );
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments