Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cn007b
Last active August 3, 2018 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cn007b/e2acfd7ba27a483824702abe54e313cd to your computer and use it in GitHub Desktop.
Save cn007b/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