Typo fix
parent
35849ca227
commit
2b15c4321b
|
@ -28,6 +28,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
private $directory;
|
private $directory;
|
||||||
private $downloadManager;
|
private $downloadManager;
|
||||||
private $repository;
|
private $repository;
|
||||||
|
private $type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes library installer.
|
* Initializes library installer.
|
||||||
|
@ -41,6 +42,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
{
|
{
|
||||||
$this->directory = $directory;
|
$this->directory = $directory;
|
||||||
$this->downloadManager = $dm;
|
$this->downloadManager = $dm;
|
||||||
|
$this->type = $type;
|
||||||
|
|
||||||
if (!is_dir($this->directory)) {
|
if (!is_dir($this->directory)) {
|
||||||
if (file_exists($this->directory)) {
|
if (file_exists($this->directory)) {
|
||||||
|
|
Loading…
Reference in New Issue