# windpress/3.2.90/vendor/symfony/property-info/PropertyInitializableExtractorInterface.php

WindPress – Tailwind CSS integration for WordPress, version 3.2.90. 25 lines.

- Page: https://pluginprobe.com/plugins/windpress/3.2.90/code/vendor/symfony/property-info/PropertyInitializableExtractorInterface.php
- Raw: https://pluginprobe.com/plugins/windpress/3.2.90/raw/vendor/symfony/property-info/PropertyInitializableExtractorInterface.php
- Modified: 2025-05-28T18:57:54+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/windpress/3.2.90/code/vendor/symfony/property-info/PropertyInitializableExtractorInterface.php#L10-L20`.

```php
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace WindPressDeps\Symfony\Component\PropertyInfo;

/**
 * Guesses if the property can be initialized through the constructor.
 *
 * @author Kévin Dunglas <dunglas@gmail.com>
 */
interface PropertyInitializableExtractorInterface
{
    /**
     * Is the property initializable? Returns true if a constructor's parameter matches the given property name.
     */
    public function isInitializable(string $class, string $property, array $context = []): ?bool;
}

```
