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 AddressExtension extends Extension
9
{
10
    /**
11
     * @example '791 Crist Parks, Sashabury, IL 86039-9874'
12
     */
13
    public function address(): string;
14
 
15
    /**
16
     * Randomly return a real city name.
17
     */
18
    public function city(): string;
19
 
20
    /**
21
     * @example 86039-9874
22
     */
23
    public function postcode(): string;
24
 
25
    /**
26
     * @example 'Crist Parks'
27
     */
28
    public function streetName(): string;
29
 
30
    /**
31
     * @example '791 Crist Parks'
32
     */
33
    public function streetAddress(): string;
34
 
35
    /**
36
     * Randomly return a building number.
37
     */
38
    public function buildingNumber(): string;
39
}