File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ See [GitHub releases](https://github.com/mll-lab/php-utils/releases).
9
9
10
10
## Unreleased
11
11
12
+ ## v5.12.1
13
+
14
+ ### Fixed
15
+
16
+ - Update type annotations in namespace ` MLL\Utils\Tecan ` to use ` array<int> ` over ` array<int, int> `
17
+
12
18
## v5.12.0
13
19
14
20
### Added
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ class ReagentDistribution extends Command
21
21
22
22
private ReagentDistributionDirection $ direction ;
23
23
24
- /** @var array<int, int >|null */
24
+ /** @var array<int>|null */
25
25
private ?array $ excludedTargetWells ;
26
26
27
27
/**
28
28
* @param int|null $numberOfDitiReuses optional maximum number of DiTi reuses allowed (default 1 = no DiTi reuse)
29
29
* @param int|null $numberOfMultiDisp optional maximum number of dispenses in a multidispense sequence (default 1 = no multi-dispense)
30
30
* @param ReagentDistributionDirection|null $direction optional pipetting direction (default = LEFT_TO_RIGHT)
31
- * @param array<int, int >|null $excludedTargetWells Optional list of wells in destination labware to be excluded from pipetting
31
+ * @param array<int>|null $excludedTargetWells Optional list of wells in destination labware to be excluded from pipetting
32
32
*/
33
33
public function __construct (
34
34
AspirateAndDispenseParameters $ source ,
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ class DispenseParameters
9
9
{
10
10
public Rack $ rack ;
11
11
12
- /** @var array<int, int > */
12
+ /** @var array<int> */
13
13
public array $ dispensePositions ;
14
14
15
- /** @param array<int, int > $dispensePositions */
15
+ /** @param array<int> $dispensePositions */
16
16
public function __construct (Rack $ rack , array $ dispensePositions )
17
17
{
18
18
$ this ->rack = $ rack ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public function toString(): string
48
48
return $ reagentDistribution ->toString ();
49
49
}
50
50
51
- /** @return array<int, int > */
51
+ /** @return array<int> */
52
52
private function excludedWells (): array
53
53
{
54
54
$ min = min ($ this ->target ->dispensePositions );
You can’t perform that action at this time.
0 commit comments