Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
### Added
Browse files Browse the repository at this point in the history
* Added `craft/cms` as a composer dependency
* Added code inspection typehinting for the plugin & services
  • Loading branch information
khalwat committed Mar 12, 2017
1 parent 1caf7cb commit 571c9ee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# PathTools Changelog

## 1.0.2 - 2017.03.12
### Added
* Added `craft/cms` as a composer dependency
* Added code inspection typehinting for the plugin & services

## 1.0.1 - 2017.02.17
### Changed
* Code cleanup
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft3-pathtools",
"description": "This twig plugin for the Craft CMS brings convenient path & url manipulation functions & filters to your Twig templates.",
"type": "craft-plugin",
"version": "1.0.1",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
Expand All @@ -22,6 +22,7 @@
}
],
"require": {
"craftcms/cms": "~3.0.0-beta.1"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 3 additions & 1 deletion src/PathTools.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
use craft\base\Plugin;

/**
* Class PathTools
*
* @author nystudio107
* @package PathTools
* @since 1.0.0
Expand All @@ -27,7 +29,7 @@ class PathTools extends Plugin
// =========================================================================

/**
* @var static
* @var PathTools
*/
public static $plugin;

Expand Down

0 comments on commit 571c9ee

Please sign in to comment.