芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/www/wp-content/plugins/better-wp-security/core/lib/actor/Multi_Actor_Factory.php
factories = $factories; } /** * Makes an Actor instance. * * @param string $type * @param string|int $identifier * * @return Actor|null */ public function make( $type, $identifier ) { foreach ( $this->factories as $factory ) { if ( $factory->get_slug() === $type ) { return $factory->make( $identifier ); } } return null; } /** * Gets the list of supported actor types. * * @return Actor_Factory[] */ public function get_supported_factories() { return $this->factories; } }