✏️ 正在编辑: class-fontawesome-command.php
路径:
/home/qyel0117/public_html/wp-content/plugins/font-awesome/includes/class-fontawesome-command.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php namespace FortAwesome; require_once trailingslashit( FONTAWESOME_DIR_PATH ) . 'includes/class-fontawesome-exception.php'; /** * Class to wrap a closure for use with WordPress action hook callbacks. * * Internal use only. * * @internal * @ignore */ class FontAwesome_Command { /** * Internal only. * * @internal * @ignore */ protected $cmd; /** * Internal only. * * @internal * @ignore */ public function __construct( $cmd ) { $this->cmd = $cmd; } /** * Internal only. * * @internal * @ignore */ public function run( ...$params ) { return \call_user_func( $this->cmd, ...$params ); } }
💾 保存文件
← 返回文件管理器