Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Acme/SomeItem/Application
  4. interface SimeItemQuery {
  5.   // ...
  6.   public function findByTag(string $tag);
  7.   // ...
  8. }
  9.  
  10. namespace Acme/SomeItem/Infrastructure
  11. class DBSimeItemQuery {
  12.   // ...
  13.   public function findByTag(string $tag) {
  14.     // Tutaj jest SQL-ka która zawiera informację od biznesu, że zwracamy obiektu bez żadnego tagu
  15.   }
  16.   // ...
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement