StocksNew/vendor/php-flasher/flasher-laravel/Component/FlasherComponent.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

24 lines
537 B
PHP

<?php
/*
* This file is part of the PHPFlasher package.
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
*/
namespace Flasher\Laravel\Component;
use Illuminate\View\Component;
class FlasherComponent extends Component
{
/**
* {@inheritdoc}
*/
public function render()
{
@trigger_error('Since php-flasher/flasher-laravel v1.6.0: Using flasher blade component is deprecated and will be removed in v2.0. PHPFlasher will render notification automatically', \E_USER_DEPRECATED);
return '';
}
}