| @@ -16,9 +16,9 @@ | ||
| 16 | 16 | */ |
| 17 | 17 | abstract class Alert_Type { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Holds instance of plugin object | |
| 20 | + * Hold the Plugin class | |
| 21 | 21 | * |
| 22 | 22 | * @var Plugin |
| 23 | 23 | */ |
| 24 | 24 | public $plugin; |
| @@ -53,9 +53,9 @@ | ||
| 53 | 53 | * |
| 54 | 54 | * @param Alert $alert Alert currently being worked on. |
| 55 | 55 | */ |
| 56 | 56 | public function display_fields( $alert ) { |
| 57 | - // Implementation optional, but recommended. | |
| 57 | + // Implementation optional, but recommended | |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Process settings form for configuration of individual alerts |
| @@ -62,9 +62,9 @@ | ||
| 62 | 62 | * |
| 63 | 63 | * @param Alert $alert Alert currently being worked on. |
| 64 | 64 | */ |
| 65 | 65 | public function save_fields( $alert ) { |
| 66 | - // Implementation optional, but recommended. | |
| 66 | + // Implementation optional, but recommended | |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Allow connectors to determine if their dependencies are satisfied or not |
| @@ -71,8 +71,8 @@ | ||
| 71 | 71 | * |
| 72 | 72 | * @return bool |
| 73 | 73 | */ |
| 74 | 74 | public function is_dependency_satisfied() { |
| 75 | - // Implementation optional, but recommended. | |
| 75 | + // Implementation optional, but recommended | |
| 76 | 76 | return true; |
| 77 | 77 | } |
| 78 | 78 | } |