DemoAdminBundle.php 326 B

1234567891011121314151617181920
  1. <?php
  2. namespace Sonata\AdminBundle\Tests\Fixtures\Bundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class DemoAdminBundle extends Bundle
  5. {
  6. protected $path = null;
  7. public function setPath($path)
  8. {
  9. $this->path = $path;
  10. }
  11. public function getPath()
  12. {
  13. return $this->path;
  14. }
  15. }