PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / vendor / intervention / image / src / Intervention / Image / Gd / Commands / WidenCommand.php

WidenCommand.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php

29 lines 795 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Intervention\Image\Gd\Commands;
4
5 class WidenCommand extends ResizeCommand
6 {
7 /**
8 * Resize image proportionally to given width
9 *
10 * @param \Intervention\Image\Image $image
11 * @return boolean
12 */
13 public function execute($image)
14 {
15 $width = $this->argument(0)->type('digit')->required()->value();
16 $additionalConstraints = $this->argument(1)->type('closure')->value();
17
18 $this->arguments[0] = $width;
19 $this->arguments[1] = null;
20 $this->arguments[2] = function ($constraint) use ($additionalConstraints) {
21 $constraint->aspectRatio();
22 if(is_callable($additionalConstraints))
23 $additionalConstraints($constraint);
24 };
25
26 return parent::execute($image);
27 }
28 }
29