npx create-next-app@latest saatchi-interview --typescript
cd saatchi-interview
npm run dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace SaatchiArt\BentoBoxDDD\Services\UserActions; | |
use SaatchiArt\BentoBoxDDD\Services\UserActions\SecondaryAdapters\Repositories\UserRepositoryInterface as UserRepository; | |
final class UserService | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test111 |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types=1); | |
namespace MyApp\Adapter\Repository\Couchbase; | |
use CouchbaseException; | |
use MyApp\Exception\DocumentIsLockedException; | |
class CartRepository | |
{ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types=1); | |
namespace MyApp\Adapter\Repository\Couchbase; | |
use CouchbaseException; | |
class LockableRepository | |
{ | |
// .... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types=1); | |
namespace MyApp\Adapter\Repository\Couchbase; | |
use MyApp\Exception\DocumentIsLockedException; | |
class LockHandler | |
{ | |
// ... |
NewerOlder