mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 14:37:55 +00:00
✨ dropped PHP < 7.2, dependency update
This commit is contained in:
@@ -15,7 +15,7 @@ namespace chillerlan\QRCode\Output;
|
||||
use chillerlan\QRCode\{
|
||||
Data\QRMatrix, QRCode
|
||||
};
|
||||
use chillerlan\Traits\ContainerInterface;
|
||||
use chillerlan\Traits\ImmutableSettingsInterface;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -50,10 +50,10 @@ abstract class QROutputAbstract implements QROutputInterface{
|
||||
/**
|
||||
* QROutputAbstract constructor.
|
||||
*
|
||||
* @param \chillerlan\Traits\ContainerInterface $options
|
||||
* @param \chillerlan\Traits\ImmutableSettingsInterface $options
|
||||
* @param \chillerlan\QRCode\Data\QRMatrix $matrix
|
||||
*/
|
||||
public function __construct(ContainerInterface $options, QRMatrix $matrix){
|
||||
public function __construct(ImmutableSettingsInterface $options, QRMatrix $matrix){
|
||||
$this->options = $options;
|
||||
$this->matrix = $matrix;
|
||||
$this->moduleCount = $this->matrix->size();
|
||||
|
||||
Reference in New Issue
Block a user