Test Setup Failed
Push — master ( 3fbe34...23fdb2 )
by Angel Fernando Quiroz
153:24 queued 94:45
created
main/auth/external_login/facebook.inc.php 2 patches
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -18,14 +18,8 @@
 block discarded – undo
18 18
 use Facebook\FacebookSession;
19 19
 use Facebook\FacebookRedirectLoginHelper;
20 20
 use Facebook\FacebookRequest;
21
-use Facebook\FacebookResponse;
22 21
 use Facebook\FacebookSDKException;
23 22
 use Facebook\FacebookRequestException;
24
-use Facebook\FacebookAuthorizationException;
25
-use Facebook\GraphObject;
26
-use Facebook\Entities\AccessToken;
27
-use Facebook\HttpClients\FacebookCurlHttpClient;
28
-use Facebook\HttpClients\FacebookHttpable;
29 23
 
30 24
 require_once dirname(__FILE__) . '/functions.inc.php';
31 25
 
Please login to merge, or discard this patch.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Licence: GPL
4
- * Please contact CBlue regarding any licences issues.
5
- * Author: [email protected]
6
- *  Copyright: CBlue SPRL, 20XX
7
- *
8
- * External login module : FACEBOOK
9
- *
10
- * This files provides the facebookConnect()  and facebook_get_url functions
11
- * Please edit the facebook.conf.php file to adapt it to your fb application parameter
12
- */
3
+     * Licence: GPL
4
+     * Please contact CBlue regarding any licences issues.
5
+     * Author: [email protected]
6
+     *  Copyright: CBlue SPRL, 20XX
7
+     *
8
+     * External login module : FACEBOOK
9
+     *
10
+     * This files provides the facebookConnect()  and facebook_get_url functions
11
+     * Please edit the facebook.conf.php file to adapt it to your fb application parameter
12
+     */
13 13
 
14 14
 require_once dirname(__FILE__) . '/../../inc/global.inc.php';
15 15
 require_once dirname(__FILE__) . '/facebook.init.php';
Please login to merge, or discard this patch.
main/inc/lib/export.lib.inc.php 2 patches
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -3,14 +3,8 @@
 block discarded – undo
3 3
 
4 4
 use Ddeboer\DataImport\Writer\ExcelWriter;
5 5
 use Ddeboer\DataImport\Writer\CsvWriter;
6
-use Ddeboer\DataImport\Workflow;
7
-
8
-use Ddeboer\DataImport\Reader\CsvReader;
9
-use Ddeboer\DataImport\Reader\ArrayReader;
10
-use Ddeboer\DataImport\Writer\ArrayWriter;
11 6
 use Chamilo\CoreBundle\Component\Editor\Connector;
12 7
 use Chamilo\CoreBundle\Component\Filesystem\Data;
13
-use ChamiloSession as Session;
14 8
 use MediaAlchemyst\Alchemyst;
15 9
 use MediaAlchemyst\DriversContainer;
16 10
 use Neutron\TemporaryFilesystem\Manager;
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         DocumentManager::file_send_for_download($filePath, true, $filename.'.csv');
58 58
         exit;
59
-	}
59
+    }
60 60
 
61 61
     /**
62 62
      * Export tabular data to XLS-file
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
         DocumentManager::file_send_for_download($filePath, true, $filename.'.xlsx');
81 81
         exit;
82
-	}
82
+    }
83 83
 
84 84
     /**
85 85
      * Export tabular data to XLS-file (as html table)
@@ -112,13 +112,13 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-    * Export tabular data to XML-file
116
-    * @param array  Simple array of data to put in XML
117
-    * @param string Name of file to be given to the user
118
-    * @param string Name of common tag to place each line in
119
-    * @param string Name of the root element. A root element should always be given.
120
-    * @param string Encoding in which the data is provided
121
-    */
115
+     * Export tabular data to XML-file
116
+     * @param array  Simple array of data to put in XML
117
+     * @param string Name of file to be given to the user
118
+     * @param string Name of common tag to place each line in
119
+     * @param string Name of the root element. A root element should always be given.
120
+     * @param string Encoding in which the data is provided
121
+     */
122 122
     public static function arrayToXml(
123 123
         $data,
124 124
         $filename = 'export',
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         fclose($handle);
149 149
         DocumentManager :: file_send_for_download($file, true, $filename.'.xml');
150 150
         exit;
151
-	}
151
+    }
152 152
 
153 153
     /**
154 154
      * Export hierarchical tabular data to XML-file
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         foreach ($data as $row) {
198 198
             $string .= "\n".str_repeat("\t",$level).'<'.$row['name'].'>';
199 199
             if (is_array($row['value'])) {
200
-            	$string .= self::_export_complex_table_xml_helper($row['value'],$level+1)."\n";
200
+                $string .= self::_export_complex_table_xml_helper($row['value'],$level+1)."\n";
201 201
                 $string .= str_repeat("\t",$level).'</'.$row['name'].'>';
202 202
             } else {
203 203
                 $string .= $row['value'];
Please login to merge, or discard this patch.
main/webservices/access_url.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 /* For licensing terms, see /license.txt */
3 3
 
4
-use Chamilo\CoreBundle\Entity\ExtraField as EntityExtraField;
5
-use Chamilo\UserBundle\Entity\User;
6
-
7 4
 /**
8 5
  * @package chamilo.webservices
9 6
  */
Please login to merge, or discard this patch.
main/wiki/wiki.inc.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -1,14 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /* For licensing terms, see /license.txt */
3 3
 
4
-use Chamilo\CoreBundle\Component\Editor\Connector;
5 4
 use Chamilo\CoreBundle\Component\Filesystem\Data;
6 5
 use ChamiloSession as Session;
7
-use MediaAlchemyst\Alchemyst;
8
-use MediaAlchemyst\DriversContainer;
9
-use Neutron\TemporaryFilesystem\Manager;
10
-use Neutron\TemporaryFilesystem\TemporaryFilesystem;
11
-use Symfony\Component\Filesystem\Filesystem;
12 6
 
13 7
 /**
14 8
  * Class Wiki
Please login to merge, or discard this patch.
main/work/upload_corrections.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 /* For licensing terms, see /license.txt */
3 3
 
4
-use ChamiloSession as Session;
5 4
 use Symfony\Component\Finder\Finder;
6 5
 
7 6
 require_once '../inc/global.inc.php';
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Filesystem/Data.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Chamilo\UserBundle\Entity\User;
9 9
 use MediaAlchemyst\Alchemyst;
10 10
 use Sunra\PhpSimple\HtmlDomParser;
11
-use Symfony\Component\Console;
12 11
 use Symfony\Component\Console\Output\OutputInterface;
13 12
 use Symfony\Component\Filesystem\Filesystem;
14 13
 use Symfony\Component\Finder\Finder;
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -86,13 +86,13 @@
 block discarded – undo
86 86
         return $this->get($file);
87 87
     }
88 88
 
89
-     /**
90
-     * Gets a file from the data/courses/MATHS/scorm directory
91
-     * @param string $courseCode
92
-     * @param string $file
93
-      *
94
-     * @return SplFileInfo
95
-     */
89
+        /**
90
+         * Gets a file from the data/courses/MATHS/scorm directory
91
+         * @param string $courseCode
92
+         * @param string $file
93
+         *
94
+         * @return SplFileInfo
95
+         */
96 96
     public function getCourseScormDocument($courseCode, $file)
97 97
     {
98 98
         $file = 'courses/'.$courseCode.'/scorm/'.$file;
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/Listener/CourseListener.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 block discarded – undo
3 3
 
4 4
 namespace Chamilo\CoreBundle\Entity\Listener;
5 5
 
6
-use Chamilo\CoreBundle\Entity\Tool;
7 6
 use Chamilo\CourseBundle\ToolChain;
8 7
 use Doctrine\ORM\Event\LifecycleEventArgs;
9 8
 use Chamilo\CoreBundle\Entity\Course;
10
-use Doctrine\ORM\Mapping as ORM;
11 9
 
12 10
 /**
13 11
  * Class CourseListener
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/TinyMce/Toolbar/Basic.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
                 "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
23 23
                 "save table contextmenu directionality emoticons template paste textcolor"
24 24
             ),
25
-           'content_css'=> "css/content.css",
26
-           'toolbar' => "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | l      ink image | print preview media fullpage | forecolor backcolor emoticons",
25
+            'content_css'=> "css/content.css",
26
+            'toolbar' => "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | l      ink image | print preview media fullpage | forecolor backcolor emoticons",
27 27
             'file_browser_callback' => 'elFinderBrowser'
28 28
         );
29 29
 
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/Driver/DropBoxDriver.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -633,8 +633,8 @@
 block discarded – undo
633 633
     }
634 634
 
635 635
     /**
636
-    * {@inheritdoc}
637
-    */
636
+     * {@inheritdoc}
637
+     */
638 638
     protected function _archive($dir, $files, $name, $arc) {
639 639
         return false;
640 640
     }
Please login to merge, or discard this patch.