diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-08-19 20:55:55 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-08-19 20:55:55 +0000 |
commit | 7aa4390a6702059342aad220e53e3aa4efc9caad (patch) | |
tree | b89bd5c2d78d4fce915629b2844a5a54ae6994ca /Postman/Postman.php | |
parent | aba9ae5fb48fa655d8ca01504efd4f6121ca41b5 (diff) | |
download | Post-SMTP-7aa4390a6702059342aad220e53e3aa4efc9caad.zip |
adding hooks
Diffstat (limited to 'Postman/Postman.php')
-rw-r--r-- | Postman/Postman.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Postman/Postman.php b/Postman/Postman.php index 1610da5..71c7cfd 100644 --- a/Postman/Postman.php +++ b/Postman/Postman.php @@ -35,6 +35,8 @@ class Postman { private $pluginData; private $rootPluginFilenameAndPath; + public static $rootPlugin; + /** * The constructor * @@ -45,6 +47,7 @@ class Postman { assert( ! empty( $rootPluginFilenameAndPath ) ); assert( ! empty( $version ) ); $this->rootPluginFilenameAndPath = $rootPluginFilenameAndPath; + self::$rootPlugin = $rootPluginFilenameAndPath; // load the dependencies require_once 'PostmanOptions.php'; |