src/Tester/Tester.php
The method _createAssertionMaker is not named in camelCase. Open
Open
protected function _createAssertionMaker()
{
return new Assertion\Maker();
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createSuite is not named in camelCase. Open
Open
protected function _createSuite($code, Coordinator\CoordinatorInterface $coordinator)
{
return new Suite\Suite($code, $coordinator);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createWriter is not named in camelCase. Open
Open
protected function _createWriter()
{
return new Writer\Writer();
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createStatAggregator is not named in camelCase. Open
Open
protected function _createStatAggregator()
{
return new Test\Aggregator();
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _prepareResults is not named in camelCase. Open
Open
protected function _prepareResults($results)
{
return $this->_createResultSetIterator($results, $this->_getStatAggregatorInstance());
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createRunner is not named in camelCase. Open
Open
protected function _createRunner(Coordinator\CoordinatorInterface $coordinator, Assertion\MakerInterface $assertionMaker, Stats\AggregatorInterface $statAggregator)
{
return new Runner\Runner($coordinator, $assertionMaker, $statAggregator);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createResultSetIterator is not named in camelCase. Open
Open
protected function _createResultSetIterator($results, Stats\AggregatorInterface $aggregator = null)
{
$iterator = new Test\ResultSetCollection($results, $aggregator);
return $iterator;
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _createCoordinator is not named in camelCase. Open
Open
protected function _createCoordinator(Writer\WriterInterface $writer)
{
return new Coordinator\Coordinator($writer);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}