Skip to content

Commit

Permalink
Merge pull request #99 from mirko-pagliai/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mirko-pagliai authored Jan 3, 2024
2 parents 90ac332 + 6954c94 commit ca56d12
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 2.x branch
## 2.12 branch
### 2.12.3
* updated for `php-tools` 1.8.

### 2.12.2
* improved and fixed a bug for `ExportCommand` and `ImportCommand`, in handling some exceptions;
* it no longer needs the `me-tools` package. This removes several (useless) dependencies;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"php": ">=7.4.0",
"ext-fileinfo": "*",
"cakephp/cakephp": "^4.0",
"mirko-pagliai/php-tools": "~1.7.4"
"mirko-pagliai/php-tools": "^1.7.4"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.4",
Expand Down
4 changes: 0 additions & 4 deletions phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,4 @@
<file>.</file>

<rule ref="./vendor/mirko-pagliai/php-tools/sniffer-ruleset.xml"/>

<rule ref="SlevomatCodingStandard.Namespaces.UseFromSameNamespace.UseFromSameNamespace">
<severity>0</severity>
</rule>
</ruleset>
2 changes: 1 addition & 1 deletion src/Utility/AbstractBackupUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __get(string $name)
throw new LogicException('Undefined property: ' . get_class($class) . '::$' . $name);
}

return $this->$name;
return $this->{$name};
}

/**
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.2
2.12.3

0 comments on commit ca56d12

Please sign in to comment.