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/0605d85613eb3fec0e92bfc6ee6d127f to your computer and use it in GitHub Desktop.
Save cn007b/0605d85613eb3fec0e92bfc6ee6d127f to your computer and use it in GitHub Desktop.
Namespace Dependency Injection - src/Infrastructure/VISA/Free/EuropeanUnion.php
<?php
namespace VISA;
use Domain\Interfaces\VISA\EuropeanUnion as VISAInterface;
class EuropeanUnion implements VISAInterface
{
public function approve(): string
{
return 'Your request is approved!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment