Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
phpcs
Signed-off-by: Lukas Reschke <[email protected]>
  • Loading branch information
LukasReschke committed Sep 6, 2021
commit a915372c56724815e3e0a63c8c77e60e7170b325
3 changes: 1 addition & 2 deletions core/Migrations/Version23000Date20210906132259.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt

$hasTable = $schema->hasTable(self::TABLE_NAME);

if(!$hasTable)
{
if (!$hasTable) {
$table = $schema->createTable(self::TABLE_NAME);
$table->addColumn('hash', Types::STRING, [
'notnull' => true,
Expand Down
1 change: 0 additions & 1 deletion lib/private/Security/RateLimiting/Limiter.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
use OC\Security\Normalizer\IpAddress;
use OC\Security\RateLimiting\Backend\IBackend;
use OC\Security\RateLimiting\Exception\RateLimitExceededException;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\IUser;

class Limiter {
Expand Down