Skip to content

Commit

Permalink
Disable code to see what happens to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
colemanw committed Mar 22, 2023
1 parent 37656fd commit 06f5950
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class SKEntitySubscriber extends AutoService implements EventSubscriberInterface
*/
public static function getSubscribedEvents(): array {
return [
'civi.api4.entityTypes' => 'on_civi_api4_entityTypes',
'hook_civicrm_pre' => 'onPreSaveDisplay',
'hook_civicrm_post' => 'onPostSaveDisplay',
// 'civi.api4.entityTypes' => 'on_civi_api4_entityTypes',
// 'hook_civicrm_pre' => 'onPreSaveDisplay',
// 'hook_civicrm_post' => 'onPostSaveDisplay',
];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function modifySpec(RequestSpec $spec): void {
* @inheritDoc
*/
public function applies($entity, $action): bool {
return strpos($entity, 'SK_') === 0;
return FALSE;
}

/**
Expand Down

0 comments on commit 06f5950

Please sign in to comment.