📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 14:00:13
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
fakerphp
/
faker
/
src
/
Faker
/
Provider
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/fakerphp/faker/src/Faker/Provider
🔄 Refresh
✏️
Editing: Medical.php
Writable
<?php namespace Faker\Provider; class Medical extends Base { protected static $bloodTypes = ['A', 'AB', 'B', 'O']; protected static $bloodRhFactors = ['+', '-']; /** * @example 'AB' */ public static function bloodType(): string { return static::randomElement(static::$bloodTypes); } /** * @example '+' */ public static function bloodRh(): string { return static::randomElement(static::$bloodRhFactors); } /** * @example 'AB+' */ public function bloodGroup(): string { return $this->generator->parse('{{bloodType}}{{bloodRh}}'); } }
💾 Save Changes
❌ Cancel