# age-gate/3.7.3/src/Integration/Sub/Example.php

Age Gate, version 3.7.3. 21 lines.

- Page: https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Integration/Sub/Example.php
- Raw: https://pluginprobe.com/plugins/age-gate/3.7.3/raw/src/Integration/Sub/Example.php
- Modified: 2022-09-24T10:59:34+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/age-gate/3.7.3/code/src/Integration/Sub/Example.php#L10-L20`.

```php
<?php

namespace AgeGate\Integration\Sub;

use AgeGate\Common\Integration;

class Example extends Integration
{
    public function exists()
    {
        return true;
    }

    public function init()
    {
        if ($this->exists()) {
            // dd('init blah Integration');
        }
    }
}

```
