Skip to content

Instantly share code, notes, and snippets.

View mikedfunk's full-sized avatar

Mike Funk mikedfunk

View GitHub Profile
@mikedfunk
mikedfunk / zonos-openapi.yml
Last active October 19, 2023 00:51
zonos-openapi.yml
openapi: 3.1.0
info:
title: Zonos
version: 0.1.0
servers:
- url: https://api.zonos.com/v1
description: main
paths:
/landed_cost:
post:

Examples with ascending order


E.g. Move D to B (no room for any)

Start:

id order
<?php
declare(strict_types=1);
namespace SaatchiArt\BentoBoxDDD\Domain\Users;
use SaatchiArt\BentoBoxDDD\Domain\Artworks\ArtworkService;
use SaatchiArt\BentoBoxDDD\SecondaryAdapters\Repositories\UserRepository;
final class UserService
<?php
declare(strict_types=1);
namespace SaatchiArt\BentoBoxDDD\Services\UserActions;
use SaatchiArt\BentoBoxDDD\Services\UserActions\SecondaryAdapters\Repositories\UserRepositoryInterface as UserRepository;
final class UserService
{
test111

Keybase proof

I hereby claim:

  • I am mikedfunk on github.
  • I am mikedfunk (https://keybase.io/mikedfunk) on keybase.
  • I have a public key ASAEZAylS80Q6A2JT9tOWkVAa_B8fUGx_xSpbAc5ba5XRgo

To claim this, I am signing this object:

<?php declare(strict_types=1);
namespace MyApp\Adapter\Repository\Couchbase;
use CouchbaseException;
use MyApp\Exception\DocumentIsLockedException;
class CartRepository
{
<?php declare(strict_types=1);
namespace MyApp\Adapter\Repository\Couchbase;
use CouchbaseException;
class LockableRepository
{
// ....
<?php declare(strict_types=1);
namespace MyApp\Adapter\Repository\Couchbase;
use MyApp\Exception\DocumentIsLockedException;
class LockHandler
{
// ...
<?php declare(strict_types=1);
namespace MyApp\Adapter\Couchbase;
use CouchbaseException;
/** Releases all couchbase locks that are tracked. */
class LockReleaser
{
// ...