<?php

declare(strict_types=1);

namespace ProxyManagerTestAsset;

/**
 * Base test class to play around with protected properties
 *
 * @author Marco Pivetta <ocramius@gmail.com>
 * @license MIT
 */
class ClassWithProtectedProperties
{
    protected $property0 = 'property0';

    protected $property1 = 'property1';

    protected $property2 = 'property2';

    protected $property3 = 'property3';

    protected $property4 = 'property4';

    protected $property5 = 'property5';

    protected $property6 = 'property6';

    protected $property7 = 'property7';

    protected $property8 = 'property8';

    protected $property9 = 'property9';
}
