Path: blob/master/src/applications/owners/lipsum/PhabricatorOwnersPackageContextFreeGrammar.php
12256 views
<?php12final class PhabricatorOwnersPackageContextFreeGrammar3extends PhutilContextFreeGrammar {45protected function getRules() {6return array(7'start' => array(8'[package]',9),10'package' => array(11'[adjective] [noun]',12'[adjective] [noun]',13'[adjective] [noun]',14'[adjective] [noun]',15'[adjective] [adjective] [noun]',16'[adjective] [noun] [noun]',17'[adjective] [adjective] [noun] [noun]',18),19'adjective' => array(20'Temporary',21'Backend',22'External',23'Emergency',24'Applied',25'Advanced',26'Experimental',27'Logging',28'Test',29'Network',30'Ephemeral',31'Clustered',32'Mining',33'Core',34'Remote',35),36'noun' => array(37'Support',38'Services',39'Infrastructure',40'Mail',41'Security',42'Application',43'Microservices',44'Monoservices',45'Megaservices',46'API',47'Storage',48'Records',49'Package',50'Directories',51'Library',52'Concern',53'Cluster',54'Engine',55),56);57}5859}606162