- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
644 B
PHP
Executable File
28 lines
644 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Dispatch events when patches are applied.
|
|
*/
|
|
namespace Google\Site_Kit_Dependencies\cweagans\Composer;
|
|
|
|
class PatchEvents
|
|
{
|
|
/**
|
|
* The PRE_PATCH_APPLY event occurs before a patch is applied.
|
|
*
|
|
* The event listener method receives a cweagans\Composer\PatchEvent instance.
|
|
*
|
|
* @var string
|
|
*/
|
|
const PRE_PATCH_APPLY = 'pre-patch-apply';
|
|
/**
|
|
* The POST_PATCH_APPLY event occurs after a patch is applied.
|
|
*
|
|
* The event listener method receives a cweagans\Composer\PatchEvent instance.
|
|
*
|
|
* @var string
|
|
*/
|
|
const POST_PATCH_APPLY = 'post-patch-apply';
|
|
}
|