We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 1 |
Total Lines | 69 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
27 | final class BfSubdivisionCode extends AbstractSearcher |
||
28 | { |
||
29 | private const DATA = [ |
||
30 | '01', // Boucle du Mouhoun |
||
31 | '02', // Cascades |
||
32 | '03', // Centre |
||
33 | '04', // Centre-Est |
||
34 | '05', // Centre-Nord |
||
35 | '06', // Centre-Ouest |
||
36 | '07', // Centre-Sud |
||
37 | '08', // Est |
||
38 | '09', // Hauts-Bassins |
||
39 | '10', // Nord |
||
40 | '11', // Plateau-Central |
||
41 | '12', // Sahel |
||
42 | '13', // Sud-Ouest |
||
43 | 'BAL', // Bale |
||
44 | 'BAM', // Bam |
||
45 | 'BAN', // Banwa |
||
46 | 'BAZ', // Bazega |
||
47 | 'BGR', // Bougouriba |
||
48 | 'BLG', // Boulgou |
||
49 | 'BLK', // Boulkiemde |
||
50 | 'COM', // Comoe |
||
51 | 'GAN', // Ganzourgou |
||
52 | 'GNA', // Gnagna |
||
53 | 'GOU', // Gourma |
||
54 | 'HOU', // Houet |
||
55 | 'IOB', // Ioba |
||
56 | 'KAD', // Kadiogo |
||
57 | 'KEN', // Kenedougou |
||
58 | 'KMD', // Komondjari |
||
59 | 'KMP', // Kompienga |
||
60 | 'KOP', // Koulpelogo |
||
61 | 'KOS', // Kossi |
||
62 | 'KOT', // Kouritenga |
||
63 | 'KOW', // Kourweogo |
||
64 | 'LER', // Leraba |
||
65 | 'LOR', // Loroum |
||
66 | 'MOU', // Mouhoun |
||
67 | 'NAM', // Namentenga |
||
68 | 'NAO', // Nahouri |
||
69 | 'NAY', // Nayala |
||
70 | 'NOU', // Noumbiel |
||
71 | 'OUB', // Oubritenga |
||
72 | 'OUD', // Oudalan |
||
73 | 'PAS', // Passore |
||
74 | 'PON', // Poni |
||
75 | 'SEN', // Seno |
||
76 | 'SIS', // Sissili |
||
77 | 'SMT', // Sanmatenga |
||
78 | 'SNG', // Sanguie |
||
79 | 'SOM', // Soum |
||
80 | 'SOR', // Sourou |
||
81 | 'TAP', // Tapoa |
||
82 | 'TUI', // Tuy |
||
83 | 'YAG', // Yagha |
||
84 | 'YAT', // Yatenga |
||
85 | 'ZIR', // Ziro |
||
86 | 'ZON', // Zondoma |
||
87 | 'ZOU', // Zoundweogo |
||
88 | ]; |
||
89 | |||
90 | /** |
||
91 | * {@inheritdoc} |
||
92 | */ |
||
93 | protected function getDataSource(): array |
||
98 |