Completed
Push — master ( ed5835...3c633b )
by Benjamin
03:05 queued 41s
created
Controller/MediaController.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
                 $media = $this->get('alpixel_media.manager')->upload($file, $this->get('request')->get('folder'), $lifetime);
39 39
                 $path = $mediaPreview->generatePathFromSecretKey($media->getSecretKey());
40 40
                 $returnData[] = [
41
-                  'id'   => $media->getSecretKey(),
42
-                  'path' => $path,
43
-                  'name' => $media->getName(),
44
-              ];
41
+                    'id'   => $media->getSecretKey(),
42
+                    'path' => $path,
43
+                    'name' => $media->getName(),
44
+                ];
45 45
             }
46 46
         }
47 47
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
                     $path = 'upload/'.$media->getUri();
99 99
 
100
-                     // find the image and determine its type
100
+                        // find the image and determine its type
101 101
                     $image = $dataManager->find($filter, $path);
102 102
 
103 103
                     // run the filter
Please login to merge, or discard this patch.
Command/MediaCleanupCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function configure()
16 16
     {
17 17
         $this->setName('alpixel:media:cleanup')
18
-             ->setDescription('Cleaning unused media');
18
+                ->setDescription('Cleaning unused media');
19 19
     }
20 20
 
21 21
     public function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
Command/LiipImagineCleanupCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         parent::configure();
18 18
         $this->setName('alpixel:media:liip_cleanup')
19
-             ->setDescription('Cleaning liip cache folders');
19
+                ->setDescription('Cleaning liip cache folders');
20 20
     }
21 21
 
22 22
     public function execute(InputInterface $input, OutputInterface $output)
Please login to merge, or discard this patch.
DataFixtures/ORM/MediaProvider.php 1 patch
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -8,54 +8,54 @@
 block discarded – undo
8 8
 
9 9
 class MediaProvider extends BaseProvider
10 10
 {
11
-	protected $mediaManager;
12
-
13
-	public function __construct(MediaManager $mediaManager)
14
-	{
15
-		$this->mediaManager = $mediaManager;
16
-	}
17
-
18
-   public function randomMedia ($width = null, $height = null, $type = "color")
19
-   {
20
-		$file = $this->downloadMedia($this->generateUrl($width, $height, $type));
21
-		$media = $this->mediaManager->upload($file);
22
-		return $media;
23
-   }
24
-
25
-   protected function generateUrl ($width = null, $height = null, $type = "color")
26
-   {
27
-   		$url = "http://loremflickr.com/";
28
-
29
-   		if ($type !== 'color') {
30
-   			$url .= 'g/';
31
-   		}
32
-
33
-   		if($width === null && $height !== null) {
34
-   			$width = round($height * 4 / 3);
35
-   		} elseif ($width !== null && $height === null) {
36
-   			$height = round($width * 3 / 4);
37
-   		} else {
38
-   			$width = rand(800, 1600);
39
-   			$height = round($width * 3 / 4);
40
-   		}
41
-
42
-   		$url .= $width.'/'.$height;
43
-
44
-   		$category = ['abstract', 'city', 'nature', 'moutains'];
45
-   		$url .= '/'.$category[array_rand($category, 1)].'/';
46
-   		return $url;
47
-   }
48
-
49
-   protected function downloadMedia($url)
50
-   {
51
-   	$filepath = sys_get_temp_dir().'/tmp.jpg';
52
-	$ch = curl_init($url);
53
-	$fp = fopen($filepath,'wb');
54
-	curl_setopt($ch, CURLOPT_FILE, $fp);
55
-	curl_setopt($ch, CURLOPT_HEADER, 0);
56
-	curl_exec($ch);
57
-	curl_close($ch);
58
-	fclose($fp);
59
-	return new File($filepath, 'random');
60
-   }
11
+    protected $mediaManager;
12
+
13
+    public function __construct(MediaManager $mediaManager)
14
+    {
15
+        $this->mediaManager = $mediaManager;
16
+    }
17
+
18
+    public function randomMedia ($width = null, $height = null, $type = "color")
19
+    {
20
+        $file = $this->downloadMedia($this->generateUrl($width, $height, $type));
21
+        $media = $this->mediaManager->upload($file);
22
+        return $media;
23
+    }
24
+
25
+    protected function generateUrl ($width = null, $height = null, $type = "color")
26
+    {
27
+            $url = "http://loremflickr.com/";
28
+
29
+            if ($type !== 'color') {
30
+                $url .= 'g/';
31
+            }
32
+
33
+            if($width === null && $height !== null) {
34
+                $width = round($height * 4 / 3);
35
+            } elseif ($width !== null && $height === null) {
36
+                $height = round($width * 3 / 4);
37
+            } else {
38
+                $width = rand(800, 1600);
39
+                $height = round($width * 3 / 4);
40
+            }
41
+
42
+            $url .= $width.'/'.$height;
43
+
44
+            $category = ['abstract', 'city', 'nature', 'moutains'];
45
+            $url .= '/'.$category[array_rand($category, 1)].'/';
46
+            return $url;
47
+    }
48
+
49
+    protected function downloadMedia($url)
50
+    {
51
+        $filepath = sys_get_temp_dir().'/tmp.jpg';
52
+    $ch = curl_init($url);
53
+    $fp = fopen($filepath,'wb');
54
+    curl_setopt($ch, CURLOPT_FILE, $fp);
55
+    curl_setopt($ch, CURLOPT_HEADER, 0);
56
+    curl_exec($ch);
57
+    curl_close($ch);
58
+    fclose($fp);
59
+    return new File($filepath, 'random');
60
+    }
61 61
 }
Please login to merge, or discard this patch.