25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

32 satır
1018B

  1. <?php
  2. use Framework\Database\Connection\Connection;
  3. class SeedProducts
  4. {
  5. public function migrate(Connection $connection)
  6. {
  7. $products = [
  8. [
  9. 'name' => 'Space Tour',
  10. 'description' => 'Take a trip on a rocket ship. Our tours are out of this world. Sign up now for a journey you won&apos;t soon forget.',
  11. ],
  12. [
  13. 'name' => 'Large Rocket',
  14. 'description' => 'Need to bring some extra space-baggage? Everyone asking you to bring back a moon rock for them? This is the rocket you want...',
  15. ],
  16. [
  17. 'name' => 'Small Rocket',
  18. 'description' => 'Space exploration is expensive. This rocket comes in under budget and atmosphere.',
  19. ],
  20. ];
  21. foreach ($products as $product) {
  22. $connection
  23. ->query()
  24. ->from('products')
  25. ->insert(['name', 'description'], $product);
  26. }
  27. }
  28. }

Powered by TurnKey Linux.