mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
ENH Use class name instead of self
This commit is contained in:
parent
678358e04e
commit
3390e9afd8
@ -379,7 +379,7 @@ class FixtureContext implements Context
|
|||||||
*/
|
*/
|
||||||
public function stepIAssignObjToObj($type, $value, $relationType, $relationId)
|
public function stepIAssignObjToObj($type, $value, $relationType, $relationId)
|
||||||
{
|
{
|
||||||
self::stepIAssignObjToObjInTheRelation($type, $value, $relationType, $relationId, null);
|
FixtureContext::stepIAssignObjToObjInTheRelation($type, $value, $relationType, $relationId, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -51,7 +51,7 @@ class Extension implements ExtensionInterface
|
|||||||
*/
|
*/
|
||||||
public function getConfigKey()
|
public function getConfigKey()
|
||||||
{
|
{
|
||||||
return self::SILVERSTRIPE_ID;
|
return Extension::SILVERSTRIPE_ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function initialize(ExtensionManager $extensionManager)
|
public function initialize(ExtensionManager $extensionManager)
|
||||||
|
@ -183,10 +183,10 @@ class RetryableCallHandler implements CallHandler
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$feature = $call->getFeature();
|
$feature = $call->getFeature();
|
||||||
if ($feature->hasTag(self::RETRY_TAG)) {
|
if ($feature->hasTag(RetryableCallHandler::RETRY_TAG)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$scenario = $this->getStepScenario($feature, $call->getStep());
|
$scenario = $this->getStepScenario($feature, $call->getStep());
|
||||||
return $scenario && $scenario->hasTag(self::RETRY_TAG);
|
return $scenario && $scenario->hasTag(RetryableCallHandler::RETRY_TAG);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user