# disco/1.4.17/vendor/inpsyde/assets/src/Handler/AssetHandler.php

Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO, version 1.4.17. 32 lines.

- Page: https://pluginprobe.com/plugins/disco/1.4.17/code/vendor/inpsyde/assets/src/Handler/AssetHandler.php
- Raw: https://pluginprobe.com/plugins/disco/1.4.17/raw/vendor/inpsyde/assets/src/Handler/AssetHandler.php
- Modified: 2024-09-18T11:17:48+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/disco/1.4.17/code/vendor/inpsyde/assets/src/Handler/AssetHandler.php#L10-L20`.

```php
<?php

/*
 * This file is part of the Assets package.
 *
 * (c) Inpsyde GmbH
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Inpsyde\Assets\Handler;

use Inpsyde\Assets\Asset;

interface AssetHandler
{
    /**
     * @param Asset $asset
     *
     * @return bool
     */
    public function register(Asset $asset): bool;

    /**
     * @param Asset $asset
     *
     * @return bool
     */
    public function enqueue(Asset $asset): bool;
}

```
