We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02ad21 commit ab037ffCopy full SHA for ab037ff
src/IMAP/Support/Masks/Mask.php
@@ -41,8 +41,14 @@ public function __construct($parent) {
41
if(method_exists($this->parent, 'getAttributes')){
42
$this->attributes = array_merge($this->attributes, $this->parent->getAttributes());
43
}
44
+
45
+ $this->boot();
46
47
48
+ /**
49
+ * Boot method made to be used by any custom mask
50
+ */
51
+ protected function boot(){}
52
53
/**
54
* Call dynamic attribute setter and getter methods and inherit the parent calls
0 commit comments