• File: interface-rsssl-has-processing-interface.php
  • Full Path: /home/docteuh/www/package-cache-session/contracts/interface-rsssl-has-processing-interface.php
  • Date Modified: 06/18/2026 4:25 PM
  • File size: 392 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
namespace RSSSL\Security\WordPress\Two_Fa\Contracts;

use RSSSL\Security\WordPress\Two_Fa\Models\Rsssl_Two_Fa_User_Collection;

interface Rsssl_Has_Processing_Interface
{
    /**
     * Processes a collection of Data Transfer Objects.
     * @return Rsssl_Two_Fa_User_Collection
     */
    public function processBatch(array $args, string $switchValue): Rsssl_Two_Fa_User_Collection;
}