DocumentCoversTransformer.php 482 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: hp
  5. * Date: 2017/11/21
  6. * Time: 11:17
  7. */
  8. namespace App\Http\Controllers\Channel\Promotion\Transformers;
  9. /**
  10. * Class DocumentCoversTransformer 文案封面
  11. * @package App\Modules\Promotion\Transformers
  12. */
  13. class DocumentCoversTransformer
  14. {
  15. public function transform($documentCoversItem)
  16. {
  17. return [
  18. 'id' => $documentCoversItem->id,
  19. 'origin_cover' => $documentCoversItem->link
  20. ];
  21. }
  22. }