diff options
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'; |