Completed
Pull Request — 1.11.x (#1339)
by José
73:57 queued 34:43
created
src/Chamilo/TicketBundle/Entity/Ticket.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -94,12 +94,12 @@
 block discarded – undo
94 94
      */
95 95
     protected $assignedLastUser;
96 96
 
97
-     /**
98
-     * @var Status
99
-     *
100
-     * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Status")
101
-     * @ORM\JoinColumn(name="status_id", referencedColumnName="id")
102
-     **/
97
+        /**
98
+         * @var Status
99
+         *
100
+         * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Status")
101
+         * @ORM\JoinColumn(name="status_id", referencedColumnName="id")
102
+         **/
103 103
     protected $status;
104 104
 
105 105
     /**
Please login to merge, or discard this patch.
src/Chamilo/TicketBundle/Entity/MessageAttachment.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     protected $filename;
58 58
 
59
-   /**
59
+    /**
60 60
      * @var integer
61 61
      *
62 62
      * @ORM\Column(name="size", type="integer", nullable=false, unique=false)
Please login to merge, or discard this patch.
plugin/courseblock/CourseBlockPlugin.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
     // When creating a new course this settings are added to the course
12 12
     public $course_settings = array(
13
-         array(
13
+            array(
14 14
             'name' => 'course_block_pre_footer',
15 15
             'type' => 'textarea'
16 16
         ),
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
         /**
69
-     * @param string $region
70
-     * @return string
71
-     */
69
+         * @param string $region
70
+         * @return string
71
+         */
72 72
     public function renderRegion($region)
73 73
     {
74 74
         $content = '';
Please login to merge, or discard this patch.
src/Chamilo/TicketBundle/Entity/Message.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,12 +53,12 @@
 block discarded – undo
53 53
      */
54 54
     protected $ipAddress;
55 55
 
56
-     /**
57
-     * @var Ticket
58
-     *
59
-     * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Ticket")
60
-     * @ORM\JoinColumn(name="ticket_id", referencedColumnName="id")
61
-     **/
56
+        /**
57
+         * @var Ticket
58
+         *
59
+         * @ORM\ManyToOne(targetEntity="Chamilo\TicketBundle\Entity\Ticket")
60
+         * @ORM\JoinColumn(name="ticket_id", referencedColumnName="id")
61
+         **/
62 62
     protected $ticket;
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
main/ticket/assign_tickets.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 api_protect_course_script();
12 12
 if (!api_is_allowed_to_edit()) {
13
-	api_not_allowed();
13
+    api_not_allowed();
14 14
 }
15 15
 $course_info = api_get_course_info();
16 16
 $course_code = $course_info['code'];
Please login to merge, or discard this patch.
main/ticket/new_ticket.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -563,7 +563,7 @@
 block discarded – undo
563 563
         $photo = '<img src="' . $userPicture. '" alt="' . api_get_person_name($user[2], $user[3]) . '" title="' . api_get_person_name($user[2], $user[3]) . '" />';
564 564
         $button = '<a  href="javascript:void(0)" onclick="load_course_list(\'div_' . $user_id . '\',' . $user_id . ', \'' . $user[5] . '\')">'
565 565
                     . Display::return_icon('view_more_stats.gif', get_lang('Info')) .
566
-                   '</a>&nbsp;&nbsp;';
566
+                    '</a>&nbsp;&nbsp;';
567 567
         $users[] = array(
568 568
             $photo,
569 569
             $user_id,
Please login to merge, or discard this patch.
main/ticket/ticket_details.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 
353 353
     foreach ($admins as $admin) {
354 354
         $select_admins.= "<option value = '" . $admin['user_id'] . "' " . (($user_id == $admin['user_id']) ? ("selected='selected'") : '') . ">" .
355
-           $admin['complete_name'] . "</option>";
355
+            $admin['complete_name'] . "</option>";
356 356
     }
357 357
     $select_admins .= "</select>";
358 358
     echo '<div id="dialog-form" title="' . $plugin->get_lang('AssignTicket') . '" >';
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
         $form->addElement(
549 549
             'checkbox',
550 550
             'confirmation',
551
-             null,
551
+                null,
552 552
             $plugin->get_lang('RequestConfirmation')
553 553
         );
554 554
     }
Please login to merge, or discard this patch.
main/ticket/categories.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
         "categories.php?action=delete&id={$row['id']}"
102 102
     );
103 103
 
104
-	return $result;
104
+    return $result;
105 105
 }
106 106
 
107 107
 Display::display_header($plugin->get_lang('MyTickets'));
Please login to merge, or discard this patch.
main/ticket/projects.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
         "categories.php?action=delete&id={$row['id']}"
102 102
     );
103 103
 
104
-	return $result;
104
+    return $result;
105 105
 }
106 106
 
107 107
 Display::display_header($plugin->get_lang('MyTickets'));
Please login to merge, or discard this patch.