PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 2.8.6
Kubio AI Page Builder v2.8.6
2.9.0 2.8.6 2.8.5 2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / vendor / fzaninotto / faker / src / Faker / Provider / hy_AM / Company.php
kubio / vendor / fzaninotto / faker / src / Faker / Provider / hy_AM Last commit date
Address.php 1 year ago Color.php 1 year ago Company.php 1 year ago Internet.php 1 year ago Person.php 1 year ago PhoneNumber.php 1 year ago
Company.php
55 lines
1 <?php
2
3 namespace Faker\Provider\hy_AM;
4
5 class Company extends \Faker\Provider\Company
6 {
7 protected static $formats = array(
8 '{{lastName}} {{companySuffix}}',
9 '{{lastName}} {{companySuffix}}',
10 '{{lastName}} {{companySuffix}}',
11 '{{lastName}} {{companySuffix}}',
12 '{{lastName}} {{companySuffix}}',
13 '{{lastName}} {{companySuffix}}',
14 '{{lastName}} {{companySuffix}}',
15 '{{lastName}} {{companySuffix}}',
16 '{{lastName}} եղբայրներ',
17 );
18
19 protected static $catchPhraseWords = array(
20
21 );
22
23 protected static $bsWords = array(
24
25 );
26
27 protected static $companySuffix = array('ՍՊԸ','և որդիներ','ՓԲԸ','ԲԲԸ');
28
29 /**
30 * @example 'Robust full-range hub'
31 */
32 public function catchPhrase()
33 {
34 $result = array();
35 foreach (static::$catchPhraseWords as &$word) {
36 $result[] = static::randomElement($word);
37 }
38
39 return join(' ', $result);
40 }
41
42 /**
43 * @example 'integrate extensible convergence'
44 */
45 public function bs()
46 {
47 $result = array();
48 foreach (static::$bsWords as &$word) {
49 $result[] = static::randomElement($word);
50 }
51
52 return join(' ', $result);
53 }
54 }
55