-
Notifications
You must be signed in to change notification settings - Fork 0
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
make package instead of plugin #7
base: main
Are you sure you want to change the base?
Conversation
composer.lockDev Package changes
Settings · Docs · Powered by Private Packagist |
"require": { | ||
"php": "^7.4|^8.0" | ||
"php": "^7.3|^8.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"php": "^7.3|^8.0" | |
"php": "^7.4|^8.0" |
@@ -0,0 +1,51 @@ | |||
<?xml version="1.0"?> | |||
<ruleset name="Sage"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not sage boo
@@ -0,0 +1,18 @@ | |||
<?php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
strict types in file?
@@ -121,7 +121,8 @@ public function deletedPost(int $post_id): void | |||
flush_rewrite_rules(); | |||
} | |||
|
|||
public function bodyClass($classes): array { | |||
public function bodyClass($classes): array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public function bodyClass($classes): array | |
public function bodyClass(array $classes): array |
@@ -107,7 +107,8 @@ public function deletedPost(int $post_id): void | |||
flush_rewrite_rules(); | |||
} | |||
|
|||
public function bodyClass($classes): array { | |||
public function bodyClass($classes): array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public function bodyClass($classes): array | |
public function bodyClass(array $classes): array |
No description provided.