summaryrefslogtreecommitdiff
path: root/Postman/PostmanOptions.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/PostmanOptions.php')
-rw-r--r--Postman/PostmanOptions.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/Postman/PostmanOptions.php b/Postman/PostmanOptions.php
index d890124..e2e78d6 100644
--- a/Postman/PostmanOptions.php
+++ b/Postman/PostmanOptions.php
@@ -167,14 +167,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) {
$this->load();
}
- public function __call($method, $args)
- {
- if (isset($this->$method)) {
- $func = $this->$method;
- return call_user_func_array($func, $args);
- }
- }
-
public function save() {
update_option( PostmanOptions::POSTMAN_OPTIONS, $this->options );
}
@@ -200,8 +192,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) {
restore_current_blog();
}
- do_action( 'post_smtp_options_load', $this );
-
$this->options = $options;
}