Removed annotations as we're not going to use them.

This commit is contained in:
Nestor Soriano 2020-07-02 12:24:23 +02:00
parent 4ec143532c
commit 1684ce08b3
4 changed files with 0 additions and 8 deletions

View File

@ -13,8 +13,6 @@ namespace Automattic\WooCommerce\Proxies;
* This class should be used instead of directly accessing the WordPress functions, to ease unit testing. * This class should be used instead of directly accessing the WordPress functions, to ease unit testing.
* *
* @package Automattic\WooCommerce\Tools\Proxies * @package Automattic\WooCommerce\Tools\Proxies
*
* @public
*/ */
class ActionsProxy { class ActionsProxy {

View File

@ -17,8 +17,6 @@ use \Psr\Container\ContainerInterface as Container;
* Idempotent functions can be executed directly. * Idempotent functions can be executed directly.
* *
* @package Automattic\WooCommerce\Tools\Proxies * @package Automattic\WooCommerce\Tools\Proxies
*
* @public
*/ */
class LegacyProxy { class LegacyProxy {

View File

@ -141,8 +141,6 @@ final class FunctionsMockerHack extends CodeHack {
* @param array $mocks Mocks as an associative array of function name => mock function with the same arguments as the original function. * @param array $mocks Mocks as an associative array of function name => mock function with the same arguments as the original function.
* *
* @throws \Exception Invalid input. * @throws \Exception Invalid input.
*
* @public
*/ */
public static function add_function_mocks( $mocks ) { public static function add_function_mocks( $mocks ) {
self::$instance->register_function_mocks( $mocks ); self::$instance->register_function_mocks( $mocks );

View File

@ -15,8 +15,6 @@ namespace Automattic\WooCommerce\Testing\Tools\DependencyManagement;
* By default, and unless any mock is registered, this class acts exactly as LegacyProxy does. * By default, and unless any mock is registered, this class acts exactly as LegacyProxy does.
* *
* @package Automattic\WooCommerce\Testing\Tools\DependencyManagement * @package Automattic\WooCommerce\Testing\Tools\DependencyManagement
*
* @public
*/ */
class MockableLegacyProxy extends \Automattic\WooCommerce\Proxies\LegacyProxy { class MockableLegacyProxy extends \Automattic\WooCommerce\Proxies\LegacyProxy {