Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117984996
PhabricatorOwnersPathContextFreeGrammar.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jun 16, 22:51
Size
877 B
Mime Type
text/x-php
Expires
Wed, Jun 18, 22:51 (2 d)
Engine
blob
Format
Raw Data
Handle
26814543
Attached To
rPH Phabricator
PhabricatorOwnersPathContextFreeGrammar.php
View Options
<?php
final
class
PhabricatorOwnersPathContextFreeGrammar
extends
PhutilContextFreeGrammar
{
protected
function
getRules
()
{
return
array
(
'start'
=>
array
(
'[path]'
,
),
'path'
=>
array
(
'/'
,
'/[directories]'
,
),
'directories'
=>
array
(
'[directory-name]'
,
'[directories][directory-name]'
,
),
'directory-name'
=>
array
(
'[directory-part]/'
,
),
'directory-part'
=>
array
(
'src'
,
'doc'
,
'bin'
,
'tmp'
,
'log'
,
'bak'
,
'applications'
,
'var'
,
'home'
,
'user'
,
'lib'
,
'tests'
,
'webroot'
,
'externals'
,
'third-party'
,
'libraries'
,
'config'
,
'media'
,
'resources'
,
'support'
,
'scripts'
,
),
);
}
}
Event Timeline
Log In to Comment