Lggr
Public Member Functions | Static Public Member Functions | List of all members
SebastianBergmann\Comparator\Factory Class Reference
Inheritance diagram for SebastianBergmann\Comparator\Factory:
Inheritance graph
[legend]

Public Member Functions

 __construct ()
 
 getComparatorFor ($expected, $actual)
 
 register (Comparator $comparator)
 
 unregister (Comparator $comparator)
 
 reset ()
 

Static Public Member Functions

static getInstance ()
 

Detailed Description

Factory for comparators which compare values for equality.

Constructor & Destructor Documentation

◆ __construct()

SebastianBergmann\Comparator\Factory::__construct ( )

Constructs a new factory.

Reimplemented in Prophecy\Comparator\Factory.

Member Function Documentation

◆ getComparatorFor()

SebastianBergmann\Comparator\Factory::getComparatorFor (   $expected,
  $actual 
)

Returns the correct comparator for comparing two values.

Parameters
mixed$expectedThe first value to compare
mixed$actualThe second value to compare
Returns
Comparator

◆ getInstance()

static SebastianBergmann\Comparator\Factory::getInstance ( )
static
Returns
Factory

Reimplemented in Prophecy\Comparator\Factory.

◆ register()

SebastianBergmann\Comparator\Factory::register ( Comparator  $comparator)

Registers a new comparator.

This comparator will be returned by getComparatorFor() if its accept() method returns TRUE for the compared values. It has higher priority than the existing comparators, meaning that its accept() method will be invoked before those of the other comparators.

Parameters
Comparator$comparatorThe comparator to be registered

◆ reset()

SebastianBergmann\Comparator\Factory::reset ( )

Unregisters all non-default comparators.

◆ unregister()

SebastianBergmann\Comparator\Factory::unregister ( Comparator  $comparator)

Unregisters a comparator.

This comparator will no longer be considered by getComparatorFor().

Parameters
Comparator$comparatorThe comparator to be unregistered

The documentation for this class was generated from the following file: