language
stringclasses
1 value
owner
stringlengths
2
15
repo
stringlengths
2
21
sha
stringlengths
45
45
message
stringlengths
7
36.3k
path
stringlengths
1
199
patch
stringlengths
15
102k
is_multipart
bool
2 classes
Other
laravel
framework
dee4d82e0259b270413573c7792d92d49b51fe2a.json
add tests for policy resolution
tests/Integration/Auth/GatePolicyResolutionTest.php
@@ -0,0 +1,22 @@ +<?php + +namespace Illuminate\Tests\Integration\Auth; + +use Orchestra\Testbench\TestCase; +use Illuminate\Support\Facades\Gate; +use Illuminate\Tests\Integration\Auth\Fixtures\AuthenticationTestUser; +use Illuminate\Tests\Integration\Auth\Fixtures\Policies\AuthenticationTestUserPolicy; + +/** + * @gr...
true
Other
laravel
framework
956fece317ada86ce2f205d5619e80a7d677f661.json
Update encrypter interface
src/Illuminate/Contracts/Encryption/Encrypter.php
@@ -10,6 +10,8 @@ interface Encrypter * @param mixed $value * @param bool $serialize * @return mixed + * + * @throws \Illuminate\Contracts\Encryption\EncryptException */ public function encrypt($value, $serialize = true); @@ -19,6 +21,8 @@ public function encrypt($value, $seri...
false
Other
laravel
framework
5356a02d54385f369068400a1b2740649da6e3e0.json
provide a path to view in compiled view: fix tests
tests/Integration/Mail/RenderingMailWithLocaleTest.php
@@ -31,14 +31,14 @@ public function testMailableRendersInDefaultLocale() { $mail = new RenderedTestMail; - $this->assertEquals('name'.PHP_EOL, $mail->render()); + $this->assertContains('name'.PHP_EOL, $mail->render()); } public function testMailableRendersInSelectedLocale() ...
false
Other
laravel
framework
db774be8588f9d30ce4577bc06fac9711e08d9cb.json
provide a path to view in compiled view
src/Illuminate/View/Compilers/BladeCompiler.php
@@ -118,7 +118,8 @@ public function compile($path = null) } if (! is_null($this->cachePath)) { - $contents = $this->compileString($this->files->get($this->getPath())); + $contents = "<?php/* {$this->getPath()} */?>\n"; + $contents .= $this->compileString($this->files...
true
Other
laravel
framework
db774be8588f9d30ce4577bc06fac9711e08d9cb.json
provide a path to view in compiled view
tests/View/ViewBladeCompilerTest.php
@@ -49,15 +49,15 @@ public function testCompileCompilesFileAndReturnsContents() { $compiler = new BladeCompiler($files = $this->getFiles(), __DIR__); $files->shouldReceive('get')->once()->with('foo')->andReturn('Hello World'); - $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('...
true
Other
laravel
framework
f22647f8048961d75bd0944f12d38097fb4bc81f.json
Remove unused HttpException This exception was added in a previous PR to provide a more clear exception when crawling errors were presented. The crawling functionality has thus been removed from Laravel but it seems this exception was forgotten. It currently also conflicts with the inherited class which was made final...
src/Illuminate/Foundation/Testing/HttpException.php
@@ -1,10 +0,0 @@ -<?php - -namespace Illuminate\Foundation\Testing; - -use PHPUnit\Framework\ExpectationFailedException; - -class HttpException extends ExpectationFailedException -{ - // -}
false
Other
laravel
framework
810b3d91b2eecf922562e68b52ca3b6a7b076e7a.json
Remove deprecated defer property
src/Illuminate/Support/ServiceProvider.php
@@ -14,15 +14,6 @@ abstract class ServiceProvider */ protected $app; - /** - * Indicates if loading of the provider is deferred. - * - * @deprecated Implement the \Illuminate\Contracts\Support\DeferrableProvider interface instead. Will be removed in Laravel 5.9. - * - * @var bool - ...
true
Other
laravel
framework
810b3d91b2eecf922562e68b52ca3b6a7b076e7a.json
Remove deprecated defer property
tests/Foundation/FoundationApplicationTest.php
@@ -8,6 +8,7 @@ use Illuminate\Foundation\Application; use Illuminate\Support\ServiceProvider; use Illuminate\Foundation\Events\LocaleUpdated; +use Illuminate\Contracts\Support\DeferrableProvider; use Illuminate\Foundation\Bootstrap\RegisterFacades; class FoundationApplicationTest extends TestCase @@ -324,10 +32...
true
Other
laravel
framework
4005e133b3aca9a118a3c971a3de65818a30c3a3.json
Remove deprecated helpers
src/Illuminate/Support/helpers.php
@@ -31,348 +31,6 @@ function append_config(array $array) } } -if (! function_exists('array_add')) { - /** - * Add an element to an array using "dot" notation if it doesn't exist. - * - * @param array $array - * @param string $key - * @param mixed $value - * @return array - ...
false
Other
laravel
framework
94f425eb7cdd68b7a8842e42dbddde37e41fbcf1.json
Remove deprecated getRelation method on BelongsTo
src/Illuminate/Database/Eloquent/Relations/BelongsTo.php
@@ -368,15 +368,4 @@ public function getRelationName() { return $this->relationName; } - - /** - * Get the name of the relationship. - * - * @return string - * @deprecated The getRelationName() method should be used instead. Will be removed in Laravel 5.9. - */ - public func...
false
Other
laravel
framework
09258473167752d3206226609f6e4e0e691fe2c2.json
improve assertJsonValidationErrors error message
src/Illuminate/Foundation/Testing/TestResponse.php
@@ -638,13 +638,22 @@ public function assertJsonCount(int $count, $key = null) */ public function assertJsonValidationErrors($keys) { + $keys = Arr::wrap($keys); + + PHPUnit::assertNotEmpty($keys, 'You need to provide at least one expected key'); + $errors = $this->json()['errors'...
true
Other
laravel
framework
09258473167752d3206226609f6e4e0e691fe2c2.json
improve assertJsonValidationErrors error message
tests/Foundation/FoundationTestResponseTest.php
@@ -344,6 +344,17 @@ public function testAssertJsonValidationErrorsCanFailWhenThereAreNoErrors() $testResponse->assertJsonValidationErrors('bar'); } + public function testAssertJsonValidationErrorsFailsWhenGivenAnEmptyArray() + { + $this->expectException(AssertionFailedError::class); + + ...
true
Other
laravel
framework
3543314ce05a09d40a71bd43c89080084d3a1620.json
Fix misspelling in mailer fake implementation
src/Illuminate/Support/Testing/Fakes/MailFake.php
@@ -263,7 +263,7 @@ public function bcc($users) } /** - * Send a new message when only a raw text part. + * Send a new message with only a raw text part. * * @param string $text * @param \Closure|string $callback
false
Other
laravel
framework
cd9f1c77661112b835e9e8de7fed0eb365e498de.json
Fix misspellings in mailer implementation
src/Illuminate/Mail/Mailer.php
@@ -160,7 +160,7 @@ public function bcc($users) } /** - * Send a new message with only an HTML part. + * Send a new message with only a HTML part. * * @param string $html * @param mixed $callback @@ -172,7 +172,7 @@ public function html($html, $callback) } /** - ...
false
Other
laravel
framework
c066baf94e8c28d0c4dc5728c2381ab5a3758d39.json
Fix misspelling in mailer contract
src/Illuminate/Contracts/Mail/Mailer.php
@@ -21,7 +21,7 @@ public function to($users); public function bcc($users); /** - * Send a new message when only a raw text part. + * Send a new message with only a raw text part. * * @param string $text * @param mixed $callback
false
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Auth/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Broadcasting/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Bus/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cache/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Config/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Console/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Container/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Contracts/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cookie/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Database/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Encryption/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Events/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Filesystem/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Hashing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Http/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Log/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Mail/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Notifications/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pagination/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pipeline/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Queue/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Redis/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Routing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Session/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Support/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Translation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Validation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/View/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Auth/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Broadcasting/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Bus/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cache/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Config/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Console/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Container/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Contracts/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cookie/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Database/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Encryption/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Events/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Filesystem/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Hashing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Http/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Log/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Mail/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Notifications/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pagination/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pipeline/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Queue/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Redis/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Routing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Session/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Support/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Translation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Validation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/View/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, cop...
true
Other
laravel
framework
acb98b0c7985e063a3886e2c29c0201fd5e310ff.json
Fix Memcached skipping For an unknown reason, Travis suddenly stopped providing the Memcached extension. We'll need to install the memcached module ourselves with PECL. Reported as an issue to Travis here: https://travis-ci.community/t/unable-to-load-dynamic-library-memcached-so/2232
.travis.yml
@@ -29,8 +29,7 @@ services: before_install: - phpenv config-rm xdebug.ini || true - - echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - - printf "\n" | pecl install -f redis + - printf "\n" | pecl install -f memcached redis - travis_retry composer self-update - my...
false
Other
laravel
framework
1069202babd7c2042a0da393e69254c00c0f737b.json
Use orchestra/testbench-core 3.8.* PHPUnit 8 support has been made available
composer.json
@@ -83,7 +83,7 @@ "league/flysystem-cached-adapter": "^1.0", "mockery/mockery": "^1.0", "moontoast/math": "^1.1", - "orchestra/testbench-core": "dev-phpunit8 as 3.8.x-dev", + "orchestra/testbench-core": "3.8.*", "pda/pheanstalk": "^3.0", "phpunit/phpunit": "^7....
false
Other
laravel
framework
bf23d49c0ca229f335108810eeefa5bfe16652f0.json
Remove test case for accessor
tests/Http/HttpJsonResponseTest.php
@@ -44,14 +44,6 @@ public function testGetOriginalContent() $this->assertInstanceOf(JsonResponseTestArrayableObject::class, $response->getOriginalContent()); } - public function testGetCallback(): void - { - $response = new JsonResponse; - $this->assertNull($response->getCallback());...
true
Other
laravel
framework
bf23d49c0ca229f335108810eeefa5bfe16652f0.json
Remove test case for accessor
tests/Http/HttpResponseTest.php
@@ -89,12 +89,6 @@ public function testWithCookie() $this->assertEquals('bar', $cookies[0]->getValue()); } - public function testGetCallback() - { - $response = new Response; - $this->assertNull($response->getCallback()); - } - public function testGetOriginalContent() { ...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthDatabaseTokenRepositoryTest.php
@@ -13,14 +13,14 @@ class AuthDatabaseTokenRepositoryTest extends TestCase { - public function setUp(): void + protected function setUp(): void { parent::setUp(); Carbon::setTestNow(Carbon::now()); } - public function tearDown(): void + protected function tearDown(): void...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthDatabaseUserProviderTest.php
@@ -13,7 +13,7 @@ class AuthDatabaseUserProviderTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthEloquentUserProviderTest.php
@@ -11,7 +11,7 @@ class AuthEloquentUserProviderTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthGuardTest.php
@@ -23,7 +23,7 @@ class AuthGuardTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthPasswordBrokerTest.php
@@ -15,7 +15,7 @@ class AuthPasswordBrokerTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthenticateMiddlewareTest.php
@@ -18,7 +18,7 @@ class AuthenticateMiddlewareTest extends TestCase { protected $auth; - public function setUp(): void + protected function setUp(): void { $container = Container::setInstance(new Container); @@ -29,7 +29,7 @@ public function setUp(): void }); } - public ...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthorizeMiddlewareTest.php
@@ -23,7 +23,7 @@ class AuthorizeMiddlewareTest extends TestCase protected $user; protected $router; - public function setUp(): void + protected function setUp(): void { parent::setUp(); @@ -44,7 +44,7 @@ public function setUp(): void }); } - public function tearDown...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/BroadcastEventTest.php
@@ -9,7 +9,7 @@ class BroadcastEventTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/BroadcasterTest.php
@@ -18,14 +18,14 @@ class BroadcasterTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = new FakeBroadcaster; } - public function tearDown(): void + protected fun...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/PusherBroadcasterTest.php
@@ -16,7 +16,7 @@ class PusherBroadcasterTest extends TestCase public $pusher; - public function setUp(): void + protected function setUp(): void { parent::setUp();
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/RedisBroadcasterTest.php
@@ -14,14 +14,14 @@ class RedisBroadcasterTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = m::mock(RedisBroadcaster::class)->makePartial(); } - public function te...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/UsePusherChannelsNamesTest.php
@@ -14,14 +14,14 @@ class UsePusherChannelConventionsTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = new FakeBroadcasterUsingPusherChannelsNames(); } - public fu...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Bus/BusDispatcherTest.php
@@ -15,7 +15,7 @@ class BusDispatcherTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheDatabaseStoreTest.php
@@ -13,7 +13,7 @@ class CacheDatabaseStoreTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheEventsTest.php
@@ -15,7 +15,7 @@ class CacheEventsTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheFileStoreTest.php
@@ -10,14 +10,14 @@ class CacheFileStoreTest extends TestCase { - public function setUp(): void + protected function setUp(): void { parent::setUp(); Carbon::setTestNow(Carbon::now()); } - public function tearDown(): void + protected function tearDown(): void { ...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheManagerTest.php
@@ -9,7 +9,7 @@ class CacheManagerTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheMemcachedConnectorTest.php
@@ -9,7 +9,7 @@ class CacheMemcachedConnectorTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheRateLimiterTest.php
@@ -9,7 +9,7 @@ class CacheRateLimiterTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheRedisStoreTest.php
@@ -9,7 +9,7 @@ class CacheRedisStoreTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheTableCommandTest.php
@@ -14,7 +14,7 @@ class CacheTableCommandTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheTaggedCacheTest.php
@@ -14,7 +14,7 @@ class CacheTaggedCacheTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/ClearCommandTest.php
@@ -52,7 +52,7 @@ protected function setUp(): void $this->command->setLaravel($app); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/RedisCacheIntegrationTest.php
@@ -12,13 +12,13 @@ class RedisCacheIntegrationTest extends TestCase { use InteractsWithRedis; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->setUpRedis(); } - public function tearDown(): void + protected function tearDown()...
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Console/ConsoleApplicationTest.php
@@ -12,7 +12,7 @@ class ConsoleApplicationTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true