Skip to content

Commit

Permalink
examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pgajek2 committed Nov 9, 2023
1 parent 1a1cb3d commit 3acc472
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion force-app/main/default/classes/example/SOQL_Account.cls
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public inherited sharing class SOQL_Account extends SOQL implements SOQL.Selector {
public final String MOCK_ID = 'SOQL_Account';
public static final String MOCK_ID = 'SOQL_Account';

public static SOQL_Account query() {
return new SOQL_Account();
Expand Down
2 changes: 1 addition & 1 deletion force-app/main/default/classes/example/SOQL_Contact.cls
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public inherited sharing class SOQL_Contact extends SOQL implements SOQL.Selector {
public final String MOCK_ID = 'SOQL_Contact';
public static final String MOCK_ID = 'SOQL_Contact';

public static SOQL_Contact query() {
return new SOQL_Contact();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public inherited sharing class SOQL_Opportunity extends SOQL implements SOQL.Selector {
public final String MOCK_ID = 'SOQL_Opportunity';
public static final String MOCK_ID = 'SOQL_Opportunity';

public static SOQL_Opportunity query() {
return new SOQL_Opportunity();
Expand Down

1 comment on commit 3acc472

@vercel
Copy link

@vercel vercel bot commented on 3acc472 Nov 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.