Skip to content

Commit

Permalink
Merge pull request #370 from Yoast/JRF/modernize-use-constant-visibility
Browse files Browse the repository at this point in the history
Modernize: add explicit visibility to all OO constants
  • Loading branch information
jrfnl authored Dec 16, 2023
2 parents 3ccdfbb + f266b5d commit 3968e54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inc/dependencies/dependency-acf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
final class Yoast_ACF_Analysis_Dependency_ACF implements Yoast_ACF_Analysis_Dependency {

const MINIMAL_REQUIRED_ACF_VERSION = '6.0.0';
public const MINIMAL_REQUIRED_ACF_VERSION = '6.0.0';

/**
* Checks if ACF is active.
Expand Down
2 changes: 1 addition & 1 deletion inc/dependencies/dependency-yoast-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
final class Yoast_ACF_Analysis_Dependency_Yoast_SEO implements Yoast_ACF_Analysis_Dependency {

const MINIMAL_REQUIRED_VERSION = '20.8-RC1';
public const MINIMAL_REQUIRED_VERSION = '20.8-RC1';

/**
* Checks if this dependency is met.
Expand Down

0 comments on commit 3968e54

Please sign in to comment.