HandleAction.php
2 weeks ago
HandleActionLabels.php
2 weeks ago
HandleActionManifest.php
2 weeks ago
HandleActionSend.php
2 weeks ago
HandleActionStrategy.php
2 weeks ago
HandleActionStrategyInterface.php
2 weeks ago
HandleActionStrategyInterface.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Interface HandleActionStrategyInterface |
| 4 | */ |
| 5 | |
| 6 | namespace WPDesk\FS\Shipment\BulkAction; |
| 7 | |
| 8 | /** |
| 9 | * . |
| 10 | */ |
| 11 | interface HandleActionStrategyInterface { |
| 12 | /** |
| 13 | * @param string $redirect_to . |
| 14 | * @param array $post_ids . |
| 15 | * |
| 16 | * @return string |
| 17 | */ |
| 18 | public function handle( string $redirect_to, array $post_ids ): string; |
| 19 | } |
| 20 |