Skip to content

Commit 1a2a54e

Browse files
committed
refactor: rename property
1 parent 10fb360 commit 1a2a54e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export type ExtStore = {
4040
phpstan: {
4141
configPath?: string;
4242
};
43-
reactivate: {
43+
activate: {
4444
timeout: DelayedTimeout;
4545
};
4646
analyse: {
@@ -87,7 +87,7 @@ export class Ext<
8787
});
8888
this.store = {
8989
phpstan: {},
90-
reactivate: {
90+
activate: {
9191
timeout: createDelayedTimeout(500),
9292
},
9393
analyse: {
@@ -212,7 +212,7 @@ export class Ext<
212212
tag: `event:${eventName}`,
213213
message: path,
214214
});
215-
this.store.reactivate.timeout.run(() => this.reactivate());
215+
this.store.activate.timeout.run(() => this.reactivate());
216216
}
217217
);
218218

0 commit comments

Comments
 (0)