<?php declare(strict_types=1); namespace Faker\Core; use Faker\Extension; /** * @experimental This class is experimental and does not fall under our BC promise */ final class Blood implements Extension\BloodExtension { /** * @var string[] */ private $bloodTypes = ['A', 'AB', 'B', 'O']; /** * @var string[] */ private $bloodRhFactors = ['+', '-']; public function bloodType(): string { return Extension\Helper::randomElement($this->bloodTypes); } public function bloodRh(): string { return Extension\Helper::randomElement($this->bloodRhFactors); } public function bloodGroup(): string { return sprintf( '%s%s', $this->bloodType(), $this->bloodRh(), ); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Barcode.php | File | 1017 B | 0644 |
|
Blood.php | File | 806 B | 0644 |
|
Color.php | File | 5.03 KB | 0644 |
|
Coordinates.php | File | 1.78 KB | 0644 |
|
DateTime.php | File | 6.34 KB | 0644 |
|
File.php | File | 23.15 KB | 0644 |
|
Number.php | File | 1.85 KB | 0644 |
|
Uuid.php | File | 1.71 KB | 0644 |
|
Version.php | File | 1.51 KB | 0644 |
|