PHP 클래스 Neos\Flow\Tests\Unit\ObjectManagement\Fixture\BasicClass

파일 보기 프로젝트 열기: neos/flow-development-collection

보호된 프로퍼티들

프로퍼티 타입 설명
$firstDependency Some injected dependency
$hasBeenInitialized Flag which reveals if the initializeAfterPropertiesSet method has been called.
$secondDependency Some injected dependency
$someProperty Some property

공개 메소드들

메소드 설명
getFirstDependency ( ) : mixed Getter method for $firstDependency
getSecondDependency ( ) : mixed Getter method for $secondDependency
getSomeProperty ( ) : mixed Getter method for $someProperty
hasBeenInitialized ( ) : boolean Returns the hasBeenInitialized flag
initializeAfterPropertiesSet ( ) : void The object initialization method which is called after properties have been injected.
injectInjectOrSetMethod ( mixed $value ) : void This setter injection method is used to check if it is preferred over the setInjectOrSetMethod() method.
injectSecondDependency ( object $value ) : void A method for setter injection of a dependency which is used for checking if injection of explicitly defined dependencies (without autowiring) works.
methodWhichExpectsAnArrayArgument ( array $someArray ) : void A great method which expects an array as an argument
setFirstDependency ( object $value ) : void Setter method for $firstDependency
setInjectOrSetMethod ( mixed $value ) : void This setter injection method is used to check if it the injectInjectOrSetMethod() is preferred over this method.
setSomeProperty ( mixed $value ) : void Setter method for $someProperty
someFinalMethod ( ) : void A final public function
throwAnException ( string $exceptionType, mixed $parameter1 = null, mixed $parameter2 = null ) : void Throws an exception .

보호된 메소드들

메소드 설명
someProtectedMethod ( ) : void Some protected method

비공개 메소드들

메소드 설명
somePrivateMethod ( ) : void Some private method

메소드 상세

getFirstDependency() 공개 메소드

Getter method for $firstDependency
public getFirstDependency ( ) : mixed
리턴 mixed The value of $firstDependency

getSecondDependency() 공개 메소드

Getter method for $secondDependency
public getSecondDependency ( ) : mixed
리턴 mixed The value of $secondDependency

getSomeProperty() 공개 메소드

Getter method for $someProperty
public getSomeProperty ( ) : mixed
리턴 mixed The value of $someProperty

hasBeenInitialized() 공개 메소드

Returns the hasBeenInitialized flag
public hasBeenInitialized ( ) : boolean
리턴 boolean Returns the hasBeenInitialized flag

initializeAfterPropertiesSet() 공개 메소드

The object initialization method which is called after properties have been injected.
public initializeAfterPropertiesSet ( ) : void
리턴 void

injectInjectOrSetMethod() 공개 메소드

This setter injection method is used to check if it is preferred over the setInjectOrSetMethod() method.
public injectInjectOrSetMethod ( mixed $value ) : void
$value mixed
리턴 void

injectSecondDependency() 공개 메소드

A method for setter injection of a dependency which is used for checking if injection of explicitly defined dependencies (without autowiring) works.
public injectSecondDependency ( object $value ) : void
$value object An object
리턴 void

methodWhichExpectsAnArrayArgument() 공개 메소드

A great method which expects an array as an argument
또한 보기: Neos\Flow\Aop\Builder\AdvicedMethodInterceptorBuilderTest
public methodWhichExpectsAnArrayArgument ( array $someArray ) : void
$someArray array Some array
리턴 void

setFirstDependency() 공개 메소드

Setter method for $firstDependency
public setFirstDependency ( object $value ) : void
$value object An object
리턴 void

setInjectOrSetMethod() 공개 메소드

This setter injection method is used to check if it the injectInjectOrSetMethod() is preferred over this method.
public setInjectOrSetMethod ( mixed $value ) : void
$value mixed
리턴 void

setSomeProperty() 공개 메소드

Setter method for $someProperty
public setSomeProperty ( mixed $value ) : void
$value mixed Some value
리턴 void

someFinalMethod() 최종 공개 메소드

A final public function
또한 보기:
final public someFinalMethod ( ) : void
리턴 void

someProtectedMethod() 보호된 메소드

Some protected method
protected someProtectedMethod ( ) : void
리턴 void

throwAnException() 공개 메소드

..
public throwAnException ( string $exceptionType, mixed $parameter1 = null, mixed $parameter2 = null ) : void
$exceptionType string Class name of the exception to throw
$parameter1 mixed First parameter to pass to the exception constructor
$parameter2 mixed Second parameter to pass to the exception constructor
리턴 void

프로퍼티 상세

$firstDependency 보호되어 있는 프로퍼티

Some injected dependency
protected $firstDependency

$hasBeenInitialized 보호되어 있는 프로퍼티

Flag which reveals if the initializeAfterPropertiesSet method has been called.
protected $hasBeenInitialized

$secondDependency 보호되어 있는 프로퍼티

Some injected dependency
protected $secondDependency

$someProperty 보호되어 있는 프로퍼티

Some property
protected $someProperty