Browse Source

add @deprecated phpdoc

pull/391/head
David Goodwin 6 years ago
parent
commit
16531534a3
  1. 6
      model/PFAHandler.php

6
model/PFAHandler.php

@ -602,10 +602,16 @@ abstract class PFAHandler {
return $result;
}
/**
* @deprecated use preSave() instead.
*/
public function beforeStore() : bool {
return $this->preSave();
}
/**
* @deprecated use postSave() instead.
*/
public function storeMore() : bool {
return $this->postSave();
}

Loading…
Cancel
Save