for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Itstructure\MFUploader\components;
use Itstructure\MFUploader\interfaces\ThumbConfigInterface;
/**
* Class ThumbConfig
*
* @property string $alias Alias name.
* @property string $name Config name.
* @property int $width Thumb width.
* @property int $height Thumb height.
* @property string $mode Thumb mode.
* @package Itstructure\MFUploader\components
* @author Andrey Girnik <[email protected]>
*/
class ThumbConfig implements ThumbConfigInterface
{
* Alias name.
* @var string
public $alias;
* Config name.
public $name;
* Thumb width.
* @var
public $width;
* Thumb height.
public $height;
* Thumb mode.
public $mode;
* Get alias name.
* @return string
public function getAlias(): string
return $this->alias;
}
* Get config name.
public function getName(): string
return $this->name;
* Get thumb width.
* @return int
public function getWidth(): int
return $this->width;
* Get thumb height.
public function getHeight(): int
return $this->height;
* Get thumb mode.
public function getMode(): string
return $this->mode;