/home/techb158/ileadtechnology.com/vendor/realrashid/sweet-alert/src/Storage
NameSizeModeActions
AlertSessionStore.php10510644editdlrm
SessionStore.php2210644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/realrashid/sweet-alert/src/Storage/AlertSessionStore.php (1051B)
session = $session; } /** * Set a session key and value. * * @param mixed $key * @param string $data * * @return mixed */ public function flash($key, $data) { $this->session->flash($key, $data); } // /** // * Flash multiple key/value pairs. // * // * @param array $data // * @return void // */ // public function flashMany(array $data) // { // foreach ($data as $key => $value) { // $this->flash($key, $value); // } // } // // /** // * Get a value from session storage. // * // * @param string $key // * @return string // */ // public function get($key) // { // return $this->session->get($key); // } }