Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
namespace Faker\Extension;
4
 
5
/**
6
 * @experimental This interface is experimental and does not fall under our BC promise
7
 */
8
interface BloodExtension extends Extension
9
{
10
    /**
11
     * Get an actual blood type
12
     *
13
     * @example 'AB'
14
     */
15
    public function bloodType(): string;
16
 
17
    /**
18
     * Get a random resis value
19
     *
20
     * @example '+'
21
     */
22
    public function bloodRh(): string;
23
 
24
    /**
25
     * Get a full blood group
26
     *
27
     * @example 'AB+'
28
     */
29
    public function bloodGroup(): string;
30
}