# give/4.16.9/src/Log/ValueObjects/LogCategory.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 29 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Log/ValueObjects/LogCategory.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Log/ValueObjects/LogCategory.php
- Modified: 2021-11-23T23:55:18+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/give/4.16.9/code/src/Log/ValueObjects/LogCategory.php#L10-L20`.

```php
<?php

namespace Give\Log\ValueObjects;

/**
 * Class LogCategory
 * @package Give\Log\ValueObjects
 *
 * @since 2.10.0
 *
 * @method static CORE()
 * @method static PAYMENT()
 * @method static MIGRATION()
 */
class LogCategory extends Enum
{
    const CORE = 'Core';
    const PAYMENT = 'Payment';
    const MIGRATION = 'Migration';

    /**
     * @inheritDoc
     */
    public static function getDefault()
    {
        return LogCategory::CORE;
    }
}

```
