OfficialInteractiveEventTransformer.php 275 B

123456789101112
  1. <?php
  2. namespace App\Http\Controllers\Wechat\OfficialAccount\Transformers;
  3. class OfficialInteractiveEventTransformer
  4. {
  5. public function transform($officialInteractiveEvent){
  6. return [
  7. 'text' => $officialInteractiveEvent->text,
  8. ];
  9. }
  10. }