Skip to content

Commit 18602f5

Browse files
authored
Dev Release v0.16.0 (#1143)
1 parent e56028f commit 18602f5

29 files changed

+809
-999
lines changed

.phpstorm.meta.php

Lines changed: 11 additions & 66 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Speedtest Tracker
22

3+
> [!IMPORTANT]
4+
> `v0.16.0` includes a breaking change that requires user action for existing installs. Read the [release](https://github.com/alexjustesen/speedtest-tracker/releases/tag/v0.16.0) notes regarding the data migration.
5+
36
[![Star History Chart](https://api.star-history.com/svg?repos=alexjustesen/speedtest-tracker&type=Date)](https://star-history.com/#alexjustesen/speedtest-tracker&Date)
47

58
## Introduction

_ide_helper.php

Lines changed: 0 additions & 311 deletions
Original file line numberDiff line numberDiff line change
@@ -17898,231 +17898,6 @@
1789817898
}
1789917899
}
1790017900

17901-
namespace Maatwebsite\Excel\Facades {
17902-
/**
17903-
*
17904-
*
17905-
*/ class Excel {
17906-
/**
17907-
*
17908-
*
17909-
* @param object $export
17910-
* @param string|null $fileName
17911-
* @param string $writerType
17912-
* @param array $headers
17913-
* @return \Symfony\Component\HttpFoundation\BinaryFileResponse
17914-
* @throws \PhpOffice\PhpSpreadsheet\Exception
17915-
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
17916-
* @static
17917-
*/ public static function download($export, $fileName, $writerType = null, $headers = [])
17918-
{
17919-
/** @var \Maatwebsite\Excel\Excel $instance */
17920-
return $instance->download($export, $fileName, $writerType, $headers);
17921-
}
17922-
/**
17923-
*
17924-
*
17925-
* @param string|null $disk Fallback for usage with named properties
17926-
* @param object $export
17927-
* @param string $filePath
17928-
* @param string|null $diskName
17929-
* @param string $writerType
17930-
* @param mixed $diskOptions
17931-
* @return bool
17932-
* @throws \PhpOffice\PhpSpreadsheet\Exception
17933-
* @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
17934-
* @static
17935-
*/ public static function store($export, $filePath, $diskName = null, $writerType = null, $diskOptions = [], $disk = null)
17936-
{
17937-
/** @var \Maatwebsite\Excel\Excel $instance */
17938-
return $instance->store($export, $filePath, $diskName, $writerType, $diskOptions, $disk);
17939-
}
17940-
/**
17941-
*
17942-
*
17943-
* @param object $export
17944-
* @param string $filePath
17945-
* @param string|null $disk
17946-
* @param string $writerType
17947-
* @param mixed $diskOptions
17948-
* @return \Illuminate\Foundation\Bus\PendingDispatch
17949-
* @static
17950-
*/ public static function queue($export, $filePath, $disk = null, $writerType = null, $diskOptions = [])
17951-
{
17952-
/** @var \Maatwebsite\Excel\Excel $instance */
17953-
return $instance->queue($export, $filePath, $disk, $writerType, $diskOptions);
17954-
}
17955-
/**
17956-
*
17957-
*
17958-
* @param object $export
17959-
* @param string $writerType
17960-
* @return string
17961-
* @static
17962-
*/ public static function raw($export, $writerType)
17963-
{
17964-
/** @var \Maatwebsite\Excel\Excel $instance */
17965-
return $instance->raw($export, $writerType);
17966-
}
17967-
/**
17968-
*
17969-
*
17970-
* @param object $import
17971-
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
17972-
* @param string|null $disk
17973-
* @param string|null $readerType
17974-
* @return \Maatwebsite\Excel\Reader|\Illuminate\Foundation\Bus\PendingDispatch
17975-
* @static
17976-
*/ public static function import($import, $filePath, $disk = null, $readerType = null)
17977-
{
17978-
/** @var \Maatwebsite\Excel\Excel $instance */
17979-
return $instance->import($import, $filePath, $disk, $readerType);
17980-
}
17981-
/**
17982-
*
17983-
*
17984-
* @param object $import
17985-
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
17986-
* @param string|null $disk
17987-
* @param string|null $readerType
17988-
* @return array
17989-
* @static
17990-
*/ public static function toArray($import, $filePath, $disk = null, $readerType = null)
17991-
{
17992-
/** @var \Maatwebsite\Excel\Excel $instance */
17993-
return $instance->toArray($import, $filePath, $disk, $readerType);
17994-
}
17995-
/**
17996-
*
17997-
*
17998-
* @param object $import
17999-
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
18000-
* @param string|null $disk
18001-
* @param string|null $readerType
18002-
* @return \Illuminate\Support\Collection
18003-
* @static
18004-
*/ public static function toCollection($import, $filePath, $disk = null, $readerType = null)
18005-
{
18006-
/** @var \Maatwebsite\Excel\Excel $instance */
18007-
return $instance->toCollection($import, $filePath, $disk, $readerType);
18008-
}
18009-
/**
18010-
*
18011-
*
18012-
* @param \Illuminate\Contracts\Queue\ShouldQueue $import
18013-
* @param string|\Symfony\Component\HttpFoundation\File\UploadedFile $filePath
18014-
* @param string|null $disk
18015-
* @param string $readerType
18016-
* @return \Illuminate\Foundation\Bus\PendingDispatch
18017-
* @static
18018-
*/ public static function queueImport($import, $filePath, $disk = null, $readerType = null)
18019-
{
18020-
/** @var \Maatwebsite\Excel\Excel $instance */
18021-
return $instance->queueImport($import, $filePath, $disk, $readerType);
18022-
}
18023-
/**
18024-
*
18025-
*
18026-
* @param string $concern
18027-
* @param callable $handler
18028-
* @param string $event
18029-
* @static
18030-
*/ public static function extend($concern, $handler, $event = 'Maatwebsite\\Excel\\Events\\BeforeWriting')
18031-
{
18032-
return \Maatwebsite\Excel\Excel::extend($concern, $handler, $event);
18033-
}
18034-
/**
18035-
* When asserting downloaded, stored, queued or imported, use regular expression
18036-
* to look for a matching file path.
18037-
*
18038-
* @return void
18039-
* @static
18040-
*/ public static function matchByRegex()
18041-
{
18042-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18043-
$instance->matchByRegex();
18044-
}
18045-
/**
18046-
* When asserting downloaded, stored, queued or imported, use regular string
18047-
* comparison for matching file path.
18048-
*
18049-
* @return void
18050-
* @static
18051-
*/ public static function doNotMatchByRegex()
18052-
{
18053-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18054-
$instance->doNotMatchByRegex();
18055-
}
18056-
/**
18057-
*
18058-
*
18059-
* @param string $fileName
18060-
* @param callable|null $callback
18061-
* @static
18062-
*/ public static function assertDownloaded($fileName, $callback = null)
18063-
{
18064-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18065-
return $instance->assertDownloaded($fileName, $callback);
18066-
}
18067-
/**
18068-
*
18069-
*
18070-
* @param string $filePath
18071-
* @param string|callable|null $disk
18072-
* @param callable|null $callback
18073-
* @static
18074-
*/ public static function assertStored($filePath, $disk = null, $callback = null)
18075-
{
18076-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18077-
return $instance->assertStored($filePath, $disk, $callback);
18078-
}
18079-
/**
18080-
*
18081-
*
18082-
* @param string $filePath
18083-
* @param string|callable|null $disk
18084-
* @param callable|null $callback
18085-
* @static
18086-
*/ public static function assertQueued($filePath, $disk = null, $callback = null)
18087-
{
18088-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18089-
return $instance->assertQueued($filePath, $disk, $callback);
18090-
}
18091-
/**
18092-
*
18093-
*
18094-
* @static
18095-
*/ public static function assertQueuedWithChain($chain)
18096-
{
18097-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18098-
return $instance->assertQueuedWithChain($chain);
18099-
}
18100-
/**
18101-
*
18102-
*
18103-
* @param string $classname
18104-
* @param callable|null $callback
18105-
* @static
18106-
*/ public static function assertExportedInRaw($classname, $callback = null)
18107-
{
18108-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18109-
return $instance->assertExportedInRaw($classname, $callback);
18110-
}
18111-
/**
18112-
*
18113-
*
18114-
* @param string $filePath
18115-
* @param string|callable|null $disk
18116-
* @param callable|null $callback
18117-
* @static
18118-
*/ public static function assertImported($filePath, $disk = null, $callback = null)
18119-
{
18120-
/** @var \Maatwebsite\Excel\Fakes\ExcelFake $instance */
18121-
return $instance->assertImported($filePath, $disk, $callback);
18122-
}
18123-
}
18124-
}
18125-
1812617901
namespace Spatie\LaravelIgnition\Facades {
1812717902
/**
1812817903
*
@@ -18495,41 +18270,6 @@
1849518270
/**
1849618271
*
1849718272
*
18498-
* @template TKey of array-key
18499-
* @template-covariant TValue
18500-
* @implements \ArrayAccess<TKey, TValue>
18501-
* @implements \Illuminate\Support\Enumerable<TKey, TValue>
18502-
*/ class Collection {
18503-
/**
18504-
*
18505-
*
18506-
* @see \Maatwebsite\Excel\Mixins\DownloadCollectionMixin::downloadExcel()
18507-
* @param string $fileName
18508-
* @param string|null $writerType
18509-
* @param mixed $withHeadings
18510-
* @param array $responseHeaders
18511-
* @static
18512-
*/ public static function downloadExcel($fileName, $writerType = null, $withHeadings = false, $responseHeaders = [])
18513-
{
18514-
return \Illuminate\Support\Collection::downloadExcel($fileName, $writerType, $withHeadings, $responseHeaders);
18515-
}
18516-
/**
18517-
*
18518-
*
18519-
* @see \Maatwebsite\Excel\Mixins\StoreCollectionMixin::storeExcel()
18520-
* @param string $filePath
18521-
* @param string|null $disk
18522-
* @param string|null $writerType
18523-
* @param mixed $withHeadings
18524-
* @static
18525-
*/ public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false)
18526-
{
18527-
return \Illuminate\Support\Collection::storeExcel($filePath, $disk, $writerType, $withHeadings);
18528-
}
18529-
}
18530-
/**
18531-
*
18532-
*
1853318273
*/ class Str {
1853418274
/**
1853518275
*
@@ -23138,56 +22878,6 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
2313822878
*/ public static function getRelationWithoutConstraintsProxy($relation)
2313922879
{
2314022880
return \Illuminate\Database\Eloquent\Builder::getRelationWithoutConstraintsProxy($relation);
23141-
}
23142-
/**
23143-
*
23144-
*
23145-
* @see \Maatwebsite\Excel\Mixins\DownloadQueryMacro::__invoke()
23146-
* @param string $fileName
23147-
* @param string|null $writerType
23148-
* @param mixed $withHeadings
23149-
* @static
23150-
*/ public static function downloadExcel($fileName, $writerType = null, $withHeadings = false)
23151-
{
23152-
return \Illuminate\Database\Eloquent\Builder::downloadExcel($fileName, $writerType, $withHeadings);
23153-
}
23154-
/**
23155-
*
23156-
*
23157-
* @see \Maatwebsite\Excel\Mixins\StoreQueryMacro::__invoke()
23158-
* @param string $filePath
23159-
* @param string|null $disk
23160-
* @param string|null $writerType
23161-
* @param mixed $withHeadings
23162-
* @static
23163-
*/ public static function storeExcel($filePath, $disk = null, $writerType = null, $withHeadings = false)
23164-
{
23165-
return \Illuminate\Database\Eloquent\Builder::storeExcel($filePath, $disk, $writerType, $withHeadings);
23166-
}
23167-
/**
23168-
*
23169-
*
23170-
* @see \Maatwebsite\Excel\Mixins\ImportMacro::__invoke()
23171-
* @param string $filename
23172-
* @param string|null $disk
23173-
* @param string|null $readerType
23174-
* @static
23175-
*/ public static function import($filename, $disk = null, $readerType = null)
23176-
{
23177-
return \Illuminate\Database\Eloquent\Builder::import($filename, $disk, $readerType);
23178-
}
23179-
/**
23180-
*
23181-
*
23182-
* @see \Maatwebsite\Excel\Mixins\ImportAsMacro::__invoke()
23183-
* @param string $filename
23184-
* @param callable $mapping
23185-
* @param string|null $disk
23186-
* @param string|null $readerType
23187-
* @static
23188-
*/ public static function importAs($filename, $mapping, $disk = null, $readerType = null)
23189-
{
23190-
return \Illuminate\Database\Eloquent\Builder::importAs($filename, $mapping, $disk, $readerType);
2319122881
}
2319222882
/**
2319322883
* Set the columns to be selected.
@@ -25186,7 +24876,6 @@ class EloquentSerialize extends \AnourValar\EloquentSerialize\Facades\EloquentSe
2518624876
class Livewire extends \Livewire\Livewire {}
2518724877
class Action extends \Lorisleiva\Actions\Facades\Actions {}
2518824878
class Lody extends \Lorisleiva\Lody\Lody {}
25189-
class Excel extends \Maatwebsite\Excel\Facades\Excel {}
2519024879
class Flare extends \Spatie\LaravelIgnition\Facades\Flare {}
2519124880
}
2519224881

0 commit comments

Comments
 (0)