Skip to content

Instantly share code, notes, and snippets.

@cn0047
Last active August 3, 2018 14:31
Show Gist options
  • Save cn0047/e2acfd7ba27a483824702abe54e313cd to your computer and use it in GitHub Desktop.
Save cn0047/e2acfd7ba27a483824702abe54e313cd to your computer and use it in GitHub Desktop.
Namespace Dependency Injection - src/Infrastructure/VISA/Review/EuropeanUnion.php
<?php
namespace VISA;
use Domain\Interfaces\VISA\EuropeanUnion as VISAInterface;
class EuropeanUnion implements VISAInterface
{
public function approve(): string
{
return 'You have to provide documents for review.';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment