Skip to content

Commit

Permalink
Release v1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Oct 24, 2020
1 parent 7b31057 commit 28c8d84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion debian/changelog
Expand Up @@ -25,8 +25,9 @@ php-vitexsoftware-ease-core (1.7) UNRELEASED; urgency=medium
* Unit tests pass again
* Release v1.7
* Release v1.7
* added Ability to load simple .env files

-- CyberVitexus <vitex@exiv.jinonice.czf> Mon, 12 Oct 2020 13:36:14 +0200
-- CyberVitexus <vitex@exiv.jinonice.czf> Sat, 24 Oct 2020 20:19:12 +0200

php-vitexsoftware-ease-core (0.12) UNRELEASED; urgency=medium

Expand Down
7 changes: 5 additions & 2 deletions src/Ease/Molecule.php
Expand Up @@ -10,6 +10,9 @@
*/

namespace Ease;
use Ease\Atom;
use Ease\Functions;


/**
* Description of Molecule
Expand Down Expand Up @@ -64,8 +67,8 @@ public function setupProperty($options, $name, $constant = null) {
} elseif (array_key_exists($constant, $options)) {
$this->$name = $options[$constant];
} else { // If No values specified we must use constants or environment
if (empty(\Ease\Functions::cfg($constant)) === false) {
$this->$name = \Ease\Functions::cfg($constant);
if (empty(Functions::cfg($constant)) === false) {
$this->$name = Functions::cfg($constant);
}
}
}
Expand Down

0 comments on commit 28c8d84

Please sign in to comment.