Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
5,480 contributions in the last year
Contribution activity
November 2020
Created 185 commits in 16 repositories
Created a pull request in Yoast/duplicate-post that received 3 comments
Update CI & CS configuration
Context Improve developer experience Summary This PR can be summarized in the following changelog entry: Improve developer experience Relevant …
Opened 58 other pull requests in 14 repositories
Yoast/wordpress-seo
16
merged
- Unit Tests: make the testsuite compatible with PHPUnit 9 and test against PHP 8
- Dependency Injection: fix custom loader on Windows
- PHPCS: ruleset update and add select ignore annotations
- CS: Lib\ORM: rename properties (no underscore prefix)
- QA: fix incorrect namespace
- QA: fix incorrect namespaces
- CS: order use statements alphabetically
- QA: use fully qualified constants
- QA: remove unused `use` statements
- QA: use fully qualified function calls
- QA: always import classes
- CS: clean up after merges
- Travis: fix `lint` command for Premium on PHP 8
- PHP 8.0: fix fatal ArgumentCountError
- Composer: update BrainMonkey with dependencies
- Composer: update PHP Scoper dependency
PHPCSStandards/PHPCSUtils
8
merged
- Arrays::isShortArray()/Lists::isShortList(): sync with upstream
- Arrays::isShortArray()/Lists::isShortList(): work round PHP8 interpolated string dereferencing
- SpacesFixer: bugfix for new line vs trailing comment
- GetMemberPropertiesTest: use named dataprovider entries
- BCFile::getMethodProperties(): sync with PHPCS / 'return_type_end_token' index
- BCFile::getMethodParameters(): sync with PHPCS / constructor property promotion support
- PHP 8.0 | Union types - sync with PHPCS
- Operators::isTypeUnion(): account for new T_TYPE_UNION token
Yoast/duplicate-post
8
merged
- Travis: lint files against PHP 8 as well
- Docs: minor comment punctuation fixes
- Docs: various fixes
- QA: translators comments should use same style
- QA: remove two redundant htmlspecialchars() calls
- QA: use strict type checking when using `in_array()`
- CS: various minor fixes
- Composer: update dependency for Composer 2.0 compatibility
rmccue/Requests
1
open
5
merged
squizlabs/PHP_CodeSniffer
5
merged
- PHP 8.0 | Tokenizer/PHP: support dereferencing of text strings with interpolated variables
- PHPCS 4.x | .gitattributes: minor tweak
- PHPCS 4.x | PHP 8.0: backfill the PHP8 namespaced name tokenization
- PHP 7.4/8.0 | Generic/LowerCaseType: add support for union types and typed properties
- PHP 8.0 | File::getMethodParameters(): add support for PHP 8 constructor property promotion
Yoast/wpseo-woocommerce
3
merged
WordPress/WordPress-Coding-Standards
1
open
2
merged
Yoast/wpseo-news
2
merged
Yoast/yoast-acf-analysis
2
merged
PHPMailer/PHPMailer
1
merged
php/php-src
1
closed
PHPCompatibility/PHPCompatibility
1
merged
Yoast/yoastcs
1
merged
Automattic/VIP-Coding-Standards
1
merged
Reviewed 7 pull requests in 6 repositories
Dealerdirect/phpcodesniffer-composer-installer 2 pull requests
Automattic/VIP-Coding-Standards 1 pull request
PHPCompatibility/PHPCompatibility 1 pull request
WordPress/WordPress-Coding-Standards 1 pull request
WordPress/wordpress-develop 1 pull request
rmccue/Requests 1 pull request
Created an issue in squizlabs/PHP_CodeSniffer that received 3 comments
PHP 8.0 | Add support for named function call parameters
Introduction PHP 8.0 introduces named function call parameters: array_fill(start_index: 0, num: 100, value: 50); // Using reserved keywords as name…