@@ -38,10 +38,10 @@ discard block |
||
| 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 |
||
| 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 |
@@ -15,7 +15,7 @@ |
||
| 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) |
@@ -16,7 +16,7 @@ |
||
| 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) |
@@ -43,17 +43,17 @@ |
||
| 43 | 43 | $height = round($width * 3 / 4); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - $url .= $width . '/' . $height; |
|
| 46 | + $url .= $width.'/'.$height; |
|
| 47 | 47 | |
| 48 | 48 | $category = ['abstract', 'city', 'nature', 'moutains']; |
| 49 | - $url .= '/' . $category[array_rand($category, 1)] . '/'; |
|
| 49 | + $url .= '/'.$category[array_rand($category, 1)].'/'; |
|
| 50 | 50 | |
| 51 | 51 | return $url; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | protected function downloadMedia($url) |
| 55 | 55 | { |
| 56 | - $filepath = sys_get_temp_dir() . '/tmp.jpg'; |
|
| 56 | + $filepath = sys_get_temp_dir().'/tmp.jpg'; |
|
| 57 | 57 | $ch = curl_init($url); |
| 58 | 58 | $fp = fopen($filepath, 'wb'); |
| 59 | 59 | curl_setopt($ch, CURLOPT_FILE, $fp); |