partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

PartAttachmentController.php (318B)


      1 <?php
      2 
      3 namespace PartKeepr\PartBundle\Controller;
      4 
      5 use PartKeepr\ImageBundle\Controller\ImageController;
      6 
      7 class PartAttachmentController extends ImageController
      8 {
      9     /**
     10      * {@inheritdoc}
     11      */
     12     protected function getEntityClass()
     13     {
     14         return 'PartKeepr\\PartBundle\\Entity\\PartAttachment';
     15     }
     16 }