Skip to content

Commit

Permalink
MNT Run module-standardiser
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Feb 1, 2024
1 parent e75ccce commit 64370e2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dispatch-ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Dispatch CI

on:
# At 4:30 PM UTC, only on Sunday and Monday
# At 5:25 PM UTC, only on Thursday and Friday
schedule:
- cron: '30 16 * * 0,1'
- cron: '25 17 * * 4,5'

jobs:
dispatch-ci:
name: Dispatch CI
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
# Only run cron on the dnadesign account
if: (github.event_name == 'schedule' && github.repository_owner == 'dnadesign') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Dispatch CI
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3"
"squizlabs/php_codesniffer": "^3",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 3 additions & 0 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
parameters:
paths:
- src
7 changes: 5 additions & 2 deletions src/Model/ElementForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@
use DNADesign\Elemental\Models\BaseElement;
use DNADesign\ElementalUserForms\Control\ElementFormController;
use SilverStripe\Control\RequestHandler;
use SilverStripe\ORM\HasManyList;
use SilverStripe\UserForms\Model\Recipient\EmailRecipient;
use SilverStripe\UserForms\Model\Submission\SubmittedForm;

/**
* @method SilverStripe\ORM\HasManyList<SilverStripe\UserForms\Model\Recipient\EmailRecipient> EmailRecipients()
* @method SilverStripe\ORM\HasManyList<SilverStripe\UserForms\Model\Submission\SubmittedForm> Submissions()
* @method HasManyList<EmailRecipient> EmailRecipients()
* @method HasManyList<SubmittedForm> Submissions()
*/
class ElementForm extends BaseElement
{
Expand Down

0 comments on commit 64370e2

Please sign in to comment.