Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phpstan: fixed return types (docs only) #2636

Merged
merged 32 commits into from
Oct 17, 2022
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a07e1ac
Fixed "should return string but returns false"
sreichel Sep 26, 2022
7721bce
Fixed "should return XYZ but returns false"
sreichel Sep 26, 2022
e7c9855
Fixed "should return array but returns null"
sreichel Sep 26, 2022
228667f
Fixed "should return string but returns null"
sreichel Sep 26, 2022
076c936
Fixed "should return int but returns null"
sreichel Sep 26, 2022
37359a5
Fixed "should return bool but returns"
sreichel Sep 26, 2022
cb79328
Merge branch '1.9.4.x' into phpstan/l3-1
sreichel Oct 1, 2022
e88b76c
Fixed docs (see comments)
sreichel Oct 1, 2022
43dda90
Fixed "should return array"
sreichel Oct 2, 2022
fd1f974
Update app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/Abst…
sreichel Oct 5, 2022
e7ad47e
Update app/code/core/Mage/Catalog/Model/Product/Attribute/Tierprice/A…
sreichel Oct 5, 2022
a5458b4
Update app/code/core/Mage/Tag/Model/Resource/Tag.php
sreichel Oct 8, 2022
21f2477
Update app/code/core/Mage/Customer/Block/Form/Register.php
sreichel Oct 8, 2022
df83d31
Added module names to helper(#2617)
sreichel Oct 1, 2022
4c37719
Get catalog search result collection from engine (#2634)
elidrissidev Oct 1, 2022
08199f0
Add PHP dependencies security check workflow (#2639)
elidrissidev Oct 2, 2022
21edb9d
[security-workflow] Fixed cron syntax (#2640)
sreichel Oct 2, 2022
1c8a814
Added OpenMage Contributors Copyright (#2295)
justinbeaty Oct 3, 2022
82fa9c8
Added ddev snippets to docs (#2575)
sreichel Oct 3, 2022
f0928c4
Improve dev/openmage/install.sh script for newer versions of Docker -…
colinmollenhour Oct 3, 2022
d14d250
Only run workflows when relevant files change (#2641)
elidrissidev Oct 3, 2022
b5b81b3
Add back notification popup severity icons URL (#2633)
elidrissidev Oct 4, 2022
3234f93
Reduce reprocessed jpeg file size by defaulting quality to 85% (#2629)
kiatng Oct 5, 2022
b98a549
Prevented editing of a non-editable order (#2632)
elidrissidev Oct 5, 2022
afe8e06
Fix dev/openmage/install.sh script setting permissions on var directory.
colinmollenhour Oct 5, 2022
f22c9cd
Allowed automatic full invoice from API (#2393)
luigifab Oct 5, 2022
df72c2b
Add check if array key isset before using it (#2649)
przemyslaw-p Oct 7, 2022
185fb12
Merge branch '1.9.4.x' into phpstan/l3-1
sreichel Oct 11, 2022
3c82e76
Fixed phpstan-baseline.neon
sreichel Oct 11, 2022
a8dfa5c
Fixed phpstan-baseline.neon (updated dev tools)
sreichel Oct 11, 2022
66e1aa0
Revert "Fixed phpstan-baseline.neon"
sreichel Oct 13, 2022
d804da9
Fixed getRegion()
sreichel Oct 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[security-workflow] Fixed cron syntax (#2640)
  • Loading branch information
sreichel committed Oct 11, 2022
commit 21edb9d46a5d710b71e6d894efc9ff6bd66e9474
6 changes: 3 additions & 3 deletions .github/workflows/security-php.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: PHP Security Check
name: "PHP Security Check"

on:
# Run automatically every Monday on midnight.
schedule:
- '0 0 * * 1'
- cron: '0 0 * * 1'
# Run on pull requests only when composer.lock has changed.
pull_request:
paths:
Expand All @@ -13,7 +13,7 @@ on:

jobs:
check:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
Expand Down