Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 0 additions & 88 deletions .phpstorm.meta.php

Large diffs are not rendered by default.

75 changes: 72 additions & 3 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.35.0.
* Generated for Laravel 10.37.1.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -6868,13 +6868,14 @@ public static function prepend($path, $data)
*
* @param string $path
* @param string $data
* @param bool $lock
* @return int
* @static
*/
public static function append($path, $data)
public static function append($path, $data, $lock = false)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->append($path, $data);
return $instance->append($path, $data, $lock);
}
/**
* Get or set UNIX mode of a file or directory.
Expand Down Expand Up @@ -14687,6 +14688,30 @@ public static function getColumns($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumns($table);
}
/**
* Get the indexes for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getIndexes($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getIndexes($table);
}
/**
* Get the foreign keys for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getForeignKeys($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getForeignKeys($table);
}
/**
* Drop all tables from the database.
Expand Down Expand Up @@ -14787,6 +14812,17 @@ public static function hasView($view)
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasView($view);
}
/**
* Get the user-defined types that belong to the database.
*
* @return array
* @static
*/
public static function getTypes()
{ //Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getTypes();
}
/**
* Determine if the given table has a given column.
Expand Down Expand Up @@ -18602,6 +18638,18 @@ class Str {
public static function sanitizeHtml($html)
{
return \Illuminate\Support\Str::sanitizeHtml($html);
}
/**
*
*
* @see \Filament\Support\SupportServiceProvider::packageBooted()
* @param string $value
* @return string
* @static
*/
public static function ucwords($value)
{
return \Illuminate\Support\Str::ucwords($value);
}

}
Expand Down Expand Up @@ -18659,6 +18707,17 @@ class Stringable {
public static function sanitizeHtml()
{
return \Illuminate\Support\Stringable::sanitizeHtml();
}
/**
*
*
* @see \Filament\Support\SupportServiceProvider::packageBooted()
* @return \Illuminate\Support\Stringable
* @static
*/
public static function ucwords()
{
return \Illuminate\Support\Stringable::ucwords();
}

}
Expand Down Expand Up @@ -18968,6 +19027,16 @@ public static function withCookies($cookies)
*
* @static
*/
public static function withHeaders($headers)
{
/** @var \Livewire\LivewireManager $instance */
return $instance->withHeaders($headers);
}
/**
*
*
* @static
*/
public static function test($name, $params = [])
{
/** @var \Livewire\LivewireManager $instance */
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"guzzlehttp/guzzle": "^7.8.1",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.35",
"laravel/framework": "^10.37",
"laravel/prompts": "^0.1.13",
"laravel/sanctum": "^3.3.2",
"laravel/tinker": "^2.8.2",
Expand Down
Loading