src/Elements/Concerns/AppliesIdToWrapper.php

Summary

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

namespace Galahad\Aire\Elements\Concerns;

trait AppliesIdToWrapper
{
    public function id($value = null)
    {
        $this->attributes->wrapper['id'] = $value;
        
        return $this;
    }
}