radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
474 B
24 lines
474 B
<?php
|
|
|
|
namespace Http\Discovery\Strategy;
|
|
|
|
use Http\Client\HttpClient;
|
|
use Http\Mock\Client as Mock;
|
|
|
|
/**
|
|
* Find the Mock client.
|
|
*
|
|
* @author Sam Rapaport <me@samrapdev.com>
|
|
*/
|
|
final class MockClientStrategy implements DiscoveryStrategy
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function getCandidates($type)
|
|
{
|
|
return (HttpClient::class === $type)
|
|
? [['class' => Mock::class, 'condition' => Mock::class]]
|
|
: [];
|
|
}
|
|
}
|
|
|