generated from spawnia/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/master' into tecan-mix-command
- Loading branch information
Showing
12 changed files
with
217 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace MLL\Utils\Microplate\Scalars; | ||
|
||
use MLL\GraphQLScalars\IntRange; | ||
|
||
class Column6 extends IntRange | ||
{ | ||
public ?string $description = 'Represents a column in a coordinate system with 6 columns. Allowed values range from 1-6.'; | ||
|
||
protected static function min(): int | ||
{ | ||
return 1; | ||
} | ||
|
||
protected static function max(): int | ||
{ | ||
return 6; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace MLL\Utils\Tecan\BasicCommands; | ||
|
||
/** | ||
* Can only be used at the very beginning of the worklist or directly after a Break command. | ||
* | ||
* @see BreakCommand | ||
*/ | ||
class SetDiTiType extends Command | ||
{ | ||
private int $indexOfDiTi; | ||
|
||
public function __construct(int $indexOfDiTi) | ||
{ | ||
$this->indexOfDiTi = $indexOfDiTi; | ||
} | ||
|
||
public function toString(): string | ||
{ | ||
return "S;{$this->indexOfDiTi}"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.