Logo white

SGH / DEEP

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • DEEP
  • ..
  • tutorials
  • introduction.txt
  • plugin update
    f90e19c3
    Andrea Petta authored
    2016-05-06 16:56:42 +0200  
    Browse Code »
introduction.txt 316 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.. introduction:

************
Introduction
************

Labber sülz

Products can also be created:

.. code-block:: php

    <?php
    $newProductName = "My Product";
    
    $product = new Product();
    $product->name = $newProductName;
    
    $entityManager->persist($product);
    $entityManager->flush();