File "BooleanColumn.php"

Full Path: /home/tecassol/public_html/tecas-solar.ma/vendor/filament/tables/src/Columns/BooleanColumn.php
File size: 234 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Filament\Tables\Columns;

/**
 * @deprecated Use `IconColumn` with the `boolean()` method instead.
 */
class BooleanColumn extends IconColumn
{
    public function isBoolean(): bool
    {
        return true;
    }
}