| @@ -1,14 +1,11 @@ | ||
| 1 | -<?php // phpcs:ignore Squiz.Commenting.FileComment.Missing -- Loader file, main plugin file has full headers. | |
| 1 | +<?php | |
| 2 | + | |
| 2 | 3 | /** |
| 3 | - * Edit Flow loader file. | |
| 4 | + * Load the somewhat poorly named edit_flow.php primary plugin file. | |
| 4 | 5 | * |
| 5 | - * Load the somewhat poorly named edit_flow.php primary plugin file. | |
| 6 | 6 | * It's been named edit_flow.php in the master repo since the beginning |
| 7 | 7 | * and we can't rename it because it will break everyone's activations. |
| 8 | 8 | * |
| 9 | - * @package EditFlow | |
| 9 | + * Since this is not the primary plugin file, it does not have the standard WordPress headers. | |
| 10 | 10 | */ |
| 11 | - | |
| 12 | -defined( 'ABSPATH' ) || exit; | |
| 13 | - | |
| 14 | -require_once __DIR__ . '/edit_flow.php'; | |
| 11 | +require_once dirname( __FILE__ ) . '/edit_flow.php'; | |