Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432867
FactoryClass.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
FactoryClass.php
View Options
<?php
/*
Copyright (c) 2009 hamcrest.org
*/
class
FactoryClass
{
/**
* @var string
*/
private
$file
;
/**
* @var ReflectionClass
*/
private
$reflector
;
/**
* @var array
*/
private
$methods
;
public
function
__construct
(
$file
,
ReflectionClass
$class
)
{
$this
->
file
=
$file
;
$this
->
reflector
=
$class
;
$this
->
extractFactoryMethods
();
}
public
function
extractFactoryMethods
()
{
$this
->
methods
=
array
();
foreach
(
$this
->
getPublicStaticMethods
()
as
$method
)
{
if
(
$method
->
isFactory
())
{
$this
->
methods
[]
=
$method
;
}
}
}
public
function
getPublicStaticMethods
()
{
$methods
=
array
();
foreach
(
$this
->
reflector
->
getMethods
(
ReflectionMethod
::
IS_STATIC
)
as
$method
)
{
if
(
$method
->
isPublic
()
&&
$method
->
getDeclaringClass
()
==
$this
->
reflector
)
{
$methods
[]
=
new
FactoryMethod
(
$this
,
$method
);
}
}
return
$methods
;
}
public
function
getFile
()
{
return
$this
->
file
;
}
public
function
getName
()
{
return
$this
->
reflector
->
name
;
}
public
function
isFactory
()
{
return
!
empty
(
$this
->
methods
);
}
public
function
getMethods
()
{
return
$this
->
methods
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 22:25 (1 d, 1 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b3/5d/29e2ced152a1548aaed2d9c11761
Default Alt Text
FactoryClass.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment