Author: Russ
Date: 2010-02-12 17:08:19 +0100 (Fri, 12 Feb 2010)
New Revision: 27953

Modified:
   
plugins/sfDoctrinePlugin/branches/1.3-2.0/lib/widget/sfWidgetFormDoctrineSelect.class.php
Log:
[1.4][sfDoctrine2Plugin] Fix indenting (whitespace change only)


Modified: 
plugins/sfDoctrinePlugin/branches/1.3-2.0/lib/widget/sfWidgetFormDoctrineSelect.class.php
===================================================================
--- 
plugins/sfDoctrinePlugin/branches/1.3-2.0/lib/widget/sfWidgetFormDoctrineSelect.class.php
   2010-02-12 16:07:20 UTC (rev 27952)
+++ 
plugins/sfDoctrinePlugin/branches/1.3-2.0/lib/widget/sfWidgetFormDoctrineSelect.class.php
   2010-02-12 16:08:19 UTC (rev 27953)
@@ -20,14 +20,14 @@
  */
 class sfWidgetFormDoctrineSelect extends sfWidgetFormSelect
 {
-       protected $em;
+  protected $em;
 
   /**
    * @see sfWidget
    */
   public function __construct(\Doctrine\ORM\EntityManager $em, $options = 
array(), $attributes = array())
   {
-               $this->em = $em;
+    $this->em = $em;
     $options['choices'] = new sfCallable(array($this, 'getChoices'));
 
     parent::__construct($options, $attributes);
@@ -89,7 +89,7 @@
       $qb->orderBy("$a." . $order[0] . ' ' . $order[1]);
     }
 
-               $q = $qb->getQuery();
+    $q = $qb->getQuery();
     $objects = $q->execute();
     $method = $this->getOption('method');
     foreach ($objects as $object)

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to