tapestry-cloud/tapestry

View on GitHub
src/Modules/Scripts/Script.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace Tapestry\Modules\Scripts;

use Tapestry\Tapestry;

abstract class Script
{
    /**
     * @var Tapestry
     */
    protected $tapestry;

    /**
     * Before constructor.
     *
     * @param Tapestry $tapestry
     */
    public function __construct(Tapestry $tapestry)
    {
        $this->tapestry = $tapestry;
    }
}