Advertisement
Device-Cheat

service container symfony php

Apr 24th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. // src/BlogBundle/Repository/PostRepository.php
  3. namespace BlogBundle\Repository;
  4.  
  5. use BlogBundle\Entity\Post;
  6. use Doctrine\ORM\EntityRepository;
  7.  
  8. class PostRepository extends EntityRepository
  9. {
  10. public function persist(Post $post)
  11. {
  12. // Perform save to db
  13. }
  14. }
  15.  
  16.  
  17.  
  18. https://github.com/shfx17
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement