# sendy/3.4.7/lib/Enums/ProcessingMethod.php

Sendy, version 3.4.7. 26 lines.

- Page: https://pluginprobe.com/plugins/sendy/3.4.7/code/lib/Enums/ProcessingMethod.php
- Raw: https://pluginprobe.com/plugins/sendy/3.4.7/raw/lib/Enums/ProcessingMethod.php
- Modified: 2026-01-13T15:11:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sendy/3.4.7/code/lib/Enums/ProcessingMethod.php#L10-L20`.

```php
<?php

namespace Sendy\WooCommerce\Enums;

final class ProcessingMethod extends Enum
{
    public const WooCommerce = 'woocommerce';
    public const Sendy = 'sendy';

    public static function cases(): array
    {
        return [
            self::WooCommerce,
            self::Sendy,
        ];
    }

    public static function casesWithDescription(): array
    {
        return [
            self::WooCommerce => __('Create shipments in WooCommerce', 'sendy'),
            self::Sendy => __('Process shipments in Sendy', 'sendy'),
        ];
    }
}

```
