|
5 | 5 |
|
6 | 6 | /** |
7 | 7 | * A helper file for Laravel, to provide autocomplete information to your IDE |
8 | | - * Generated for Laravel 11.40.0. |
| 8 | + * Generated for Laravel 11.41.3. |
9 | 9 | * |
10 | 10 | * This file should not be included in your code, only analyzed by your IDE! |
11 | 11 | * |
@@ -6345,145 +6345,6 @@ public static function flushMacros() |
6345 | 6345 |
|
6346 | 6346 | } |
6347 | 6347 | /** |
6348 | | - * |
6349 | | - * |
6350 | | - * @see \Illuminate\Encryption\Encrypter |
6351 | | - */ |
6352 | | - class Crypt { |
6353 | | - /** |
6354 | | - * Determine if the given key and cipher combination is valid. |
6355 | | - * |
6356 | | - * @param string $key |
6357 | | - * @param string $cipher |
6358 | | - * @return bool |
6359 | | - * @static |
6360 | | - */ |
6361 | | - public static function supported($key, $cipher) |
6362 | | - { |
6363 | | - return \Illuminate\Encryption\Encrypter::supported($key, $cipher); |
6364 | | - } |
6365 | | - |
6366 | | - /** |
6367 | | - * Create a new encryption key for the given cipher. |
6368 | | - * |
6369 | | - * @param string $cipher |
6370 | | - * @return string |
6371 | | - * @static |
6372 | | - */ |
6373 | | - public static function generateKey($cipher) |
6374 | | - { |
6375 | | - return \Illuminate\Encryption\Encrypter::generateKey($cipher); |
6376 | | - } |
6377 | | - |
6378 | | - /** |
6379 | | - * Encrypt the given value. |
6380 | | - * |
6381 | | - * @param mixed $value |
6382 | | - * @param bool $serialize |
6383 | | - * @return string |
6384 | | - * @throws \Illuminate\Contracts\Encryption\EncryptException |
6385 | | - * @static |
6386 | | - */ |
6387 | | - public static function encrypt($value, $serialize = true) |
6388 | | - { |
6389 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6390 | | - return $instance->encrypt($value, $serialize); |
6391 | | - } |
6392 | | - |
6393 | | - /** |
6394 | | - * Encrypt a string without serialization. |
6395 | | - * |
6396 | | - * @param string $value |
6397 | | - * @return string |
6398 | | - * @throws \Illuminate\Contracts\Encryption\EncryptException |
6399 | | - * @static |
6400 | | - */ |
6401 | | - public static function encryptString($value) |
6402 | | - { |
6403 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6404 | | - return $instance->encryptString($value); |
6405 | | - } |
6406 | | - |
6407 | | - /** |
6408 | | - * Decrypt the given value. |
6409 | | - * |
6410 | | - * @param string $payload |
6411 | | - * @param bool $unserialize |
6412 | | - * @return mixed |
6413 | | - * @throws \Illuminate\Contracts\Encryption\DecryptException |
6414 | | - * @static |
6415 | | - */ |
6416 | | - public static function decrypt($payload, $unserialize = true) |
6417 | | - { |
6418 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6419 | | - return $instance->decrypt($payload, $unserialize); |
6420 | | - } |
6421 | | - |
6422 | | - /** |
6423 | | - * Decrypt the given string without unserialization. |
6424 | | - * |
6425 | | - * @param string $payload |
6426 | | - * @return string |
6427 | | - * @throws \Illuminate\Contracts\Encryption\DecryptException |
6428 | | - * @static |
6429 | | - */ |
6430 | | - public static function decryptString($payload) |
6431 | | - { |
6432 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6433 | | - return $instance->decryptString($payload); |
6434 | | - } |
6435 | | - |
6436 | | - /** |
6437 | | - * Get the encryption key that the encrypter is currently using. |
6438 | | - * |
6439 | | - * @return string |
6440 | | - * @static |
6441 | | - */ |
6442 | | - public static function getKey() |
6443 | | - { |
6444 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6445 | | - return $instance->getKey(); |
6446 | | - } |
6447 | | - |
6448 | | - /** |
6449 | | - * Get the current encryption key and all previous encryption keys. |
6450 | | - * |
6451 | | - * @return array |
6452 | | - * @static |
6453 | | - */ |
6454 | | - public static function getAllKeys() |
6455 | | - { |
6456 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6457 | | - return $instance->getAllKeys(); |
6458 | | - } |
6459 | | - |
6460 | | - /** |
6461 | | - * Get the previous encryption keys. |
6462 | | - * |
6463 | | - * @return array |
6464 | | - * @static |
6465 | | - */ |
6466 | | - public static function getPreviousKeys() |
6467 | | - { |
6468 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6469 | | - return $instance->getPreviousKeys(); |
6470 | | - } |
6471 | | - |
6472 | | - /** |
6473 | | - * Set the previous / legacy encryption keys that should be utilized if decryption fails. |
6474 | | - * |
6475 | | - * @param array $keys |
6476 | | - * @return \Illuminate\Encryption\Encrypter |
6477 | | - * @static |
6478 | | - */ |
6479 | | - public static function previousKeys($keys) |
6480 | | - { |
6481 | | - /** @var \Illuminate\Encryption\Encrypter $instance */ |
6482 | | - return $instance->previousKeys($keys); |
6483 | | - } |
6484 | | - |
6485 | | - } |
6486 | | - /** |
6487 | 6348 | * |
6488 | 6349 | * |
6489 | 6350 | * @see https://carbon.nesbot.com/docs/ |
@@ -10379,6 +10240,19 @@ public static function addNamespace($namespace, $hint) |
10379 | 10240 | $instance->addNamespace($namespace, $hint); |
10380 | 10241 | } |
10381 | 10242 |
|
| 10243 | + /** |
| 10244 | + * Add a new path to the loader. |
| 10245 | + * |
| 10246 | + * @param string $path |
| 10247 | + * @return void |
| 10248 | + * @static |
| 10249 | + */ |
| 10250 | + public static function addPath($path) |
| 10251 | + { |
| 10252 | + /** @var \Illuminate\Translation\Translator $instance */ |
| 10253 | + $instance->addPath($path); |
| 10254 | + } |
| 10255 | + |
10382 | 10256 | /** |
10383 | 10257 | * Add a new JSON path to the loader. |
10384 | 10258 | * |
@@ -22459,7 +22333,6 @@ class Concurrency extends \Illuminate\Support\Facades\Concurrency {} |
22459 | 22333 | class Config extends \Illuminate\Support\Facades\Config {} |
22460 | 22334 | class Context extends \Illuminate\Support\Facades\Context {} |
22461 | 22335 | class Cookie extends \Illuminate\Support\Facades\Cookie {} |
22462 | | - class Crypt extends \Illuminate\Support\Facades\Crypt {} |
22463 | 22336 | class Date extends \Illuminate\Support\Facades\Date {} |
22464 | 22337 | class DB extends \Illuminate\Support\Facades\DB {} |
22465 | 22338 |
|
|
0 commit comments