1. Go to this page and download the library: Download spawnia/sailor library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
spawnia / sailor example snippets
use Example\Api\Operations\HelloSailor;
/** @var \Spawnia\Sailor\Client $client Somehow instantiated dynamically */
HelloSailor::setClient($client);
// Will use $client over the client from EndpointConfig
$result = HelloSailor::execute();
// Reverts to using the client from EndpointConfig
HelloSailor::setClient(null);
namespace Example\Api\Operations;
class HelloSailor extends \Spawnia\Sailor\Operation { ... }
$result->data // `null` or a generated subclass of `\Spawnia\Sailor\ObjectLike`
$result->errors // `null` or a list of `\Spawnia\Sailor\Error\Error`
$result->extensions // `null` or an arbitrary map
$errorFreeResult = \Example\Api\Operations\HelloSailor::execute()
->errorFree(); // Throws if there are errors or returns an error free result
$errorFreeResult->data // a generated subclass of `\Spawnia\Sailor\ObjectLike`
$errorFreeResult->extensions // `null` or an arbitrary map
\Example\Api\Operations\SomeMutation::execute()
->assertErrorFree(); // Throws if there are errors
class HelloSailor extends \Spawnia\Sailor\Operation
{
public static function execute(string $
$input = new \Example\Api\Types\SomeInput;
$input->foo = 'bar';
\Example\Api\Types\SomeInput::make(foo: 'bar')
class SomeInput extends \Spawnia\Sailor\ObjectLike
{
public static function make(
int $stance = new self;
$instance->}
SomeInput::make(
SomeInput::make(
Spawnia\Sailor\ObjectLike::UNDEFINED = 'Special default value that allows Sailor to differentiate between explicitly passing null and not passing a value at all.';
class SomeInput extends \Spawnia\Sailor\ObjectLike
{
/**
* @param int $ */
public static function make(
$sing a value at all.',
$secondOptional = 'Special default value that allows Sailor to differentiate between explicitly passing null and not passing a value at all.',
): self {
$instance = new self;
if ($
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
use Spawnia\Sailor\Testing\UsesSailorMocks;
abstract class TestCase extends PHPUnitTestCase
{
use MockeryPHPUnitIntegration;
use UsesSailorMocks;
}
use Example\Api\Operations\HelloSailor;
/** @var \Mockery\MockInterface&HelloSailor */
$mock = HelloSailor::mock();