17 lines
884 B
PHP
17 lines
884 B
PHP
|
<?php
|
||
|
|
||
|
namespace PHPSTORM_META;
|
||
|
|
||
|
expectedArguments(\Yoeunes\Toastr\ToastrBuilder::showMethod(), 0, 'fadeIn', 'fadeOut', 'slideDown', 'show');
|
||
|
expectedArguments(\Yoeunes\Toastr\ToastrBuilder::hideMethod(), 0, 'fadeIn', 'fadeOut', 'slideDown', 'show');
|
||
|
expectedArguments(\Yoeunes\Toastr\ToastrBuilder::showEasing(), 0, 'swing', 'linear');
|
||
|
expectedArguments(\Yoeunes\Toastr\ToastrBuilder::hideEasing(), 0, 'swing', 'linear');
|
||
|
expectedArguments(\Yoeunes\Toastr\ToastrBuilder::positionClass(), 0, 'toast-top-right', 'toast-top-center', 'toast-bottom-center', 'toast-top-full-width', 'toast-bottom-full-width', 'toast-top-left', 'toast-bottom-right', 'toast-bottom-left');
|
||
|
|
||
|
$mapping = map([
|
||
|
'toastr' => \Flasher\Toastr\Prime\ToastrFactory::class
|
||
|
]);
|
||
|
|
||
|
override(\Flasher\Prime\FlasherInterface::create(), map($mapping));
|
||
|
override(\Flasher\Prime\FlasherInterface::using(), map($mapping));
|