Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F434599
DiffusionExternalSymbolQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionExternalSymbolQuery.php
View Options
<?php
final
class
DiffusionExternalSymbolQuery
{
private
$languages
=
array
();
private
$types
=
array
();
private
$names
=
array
();
private
$contexts
=
array
();
public
function
withLanguages
(
array
$languages
)
{
$this
->
languages
=
$languages
;
return
$this
;
}
public
function
withTypes
(
array
$types
)
{
$this
->
types
=
$types
;
return
$this
;
}
public
function
withNames
(
array
$names
)
{
$this
->
names
=
$names
;
return
$this
;
}
public
function
withContexts
(
array
$contexts
)
{
$this
->
contexts
=
$contexts
;
return
$this
;
}
public
function
getLanguages
()
{
return
$this
->
languages
;
}
public
function
getTypes
()
{
return
$this
->
types
;
}
public
function
getNames
()
{
return
$this
->
names
;
}
public
function
getContexts
()
{
return
$this
->
contexts
;
}
public
function
matchesAnyLanguage
(
array
$languages
)
{
return
(!
$this
->
languages
)
||
array_intersect
(
$languages
,
$this
->
languages
);
}
public
function
matchesAnyType
(
array
$types
)
{
return
(!
$this
->
types
)
||
array_intersect
(
$types
,
$this
->
types
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 5:45 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
62395
Default Alt Text
DiffusionExternalSymbolQuery.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment