mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-09 05:54:34 +02:00
Apply Laravel Pint fixes
This commit is contained in:
@ -3,10 +3,9 @@
|
||||
namespace Tests\Classes;
|
||||
|
||||
use Illuminate\Http\Testing\File;
|
||||
use Tests\Classes\OtpTestData;
|
||||
|
||||
class LocalFileFactory {
|
||||
|
||||
class LocalFileFactory
|
||||
{
|
||||
/**
|
||||
* Create a new local valid qrcode image.
|
||||
*
|
||||
@ -28,7 +27,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local invalid qrcode image.
|
||||
*
|
||||
@ -50,7 +48,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local valid Aegis JSON file.
|
||||
*
|
||||
@ -67,7 +64,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local invalid Aegis JSON file.
|
||||
*
|
||||
@ -84,7 +80,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local encrypted Aegis JSON file.
|
||||
*
|
||||
@ -101,7 +96,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local valid Plain Text file.
|
||||
*
|
||||
@ -122,7 +116,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local valid Plain Text file with new lines.
|
||||
*
|
||||
@ -147,7 +140,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local invalid Plain Text file with no URI.
|
||||
*
|
||||
@ -166,7 +158,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local invalid Plain Text file with invalid line.
|
||||
*
|
||||
@ -187,7 +178,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local invalid Plain Text file with invalid URI.
|
||||
*
|
||||
@ -208,7 +198,6 @@ class LocalFileFactory {
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new local empty Plain Text file.
|
||||
*
|
||||
@ -224,6 +213,4 @@ class LocalFileFactory {
|
||||
fwrite($temp, ob_get_clean());
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user