From 74ef259f14ae9296bbdec530c36d95c3175c0d45 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Sat, 4 May 2024 11:14:02 +0200 Subject: [PATCH] Add declare(strict_types=1) declarations --- src/AbstractBinaryType.php | 2 ++ src/AbstractType.php | 2 ++ src/Exceptions/NotMatchingException.php | 2 ++ src/MimeSniffer.php | 2 ++ src/Types/ApplicationGzip.php | 2 ++ src/Types/ApplicationOctetStream.php | 2 ++ src/Types/ApplicationOgg.php | 2 ++ src/Types/ApplicationPdf.php | 2 ++ src/Types/ApplicationRar.php | 2 ++ src/Types/ApplicationSqlite.php | 2 ++ src/Types/ApplicationTar.php | 2 ++ src/Types/ApplicationZip.php | 2 ++ src/Types/AudioFlac.php | 2 ++ src/Types/AudioMpeg.php | 2 ++ src/Types/ImageAvif.php | 2 ++ src/Types/ImageBmp.php | 2 ++ src/Types/ImageGif.php | 2 ++ src/Types/ImageHeic.php | 2 ++ src/Types/ImageHeif.php | 2 ++ src/Types/ImageIco.php | 2 ++ src/Types/ImageJpeg.php | 2 ++ src/Types/ImagePng.php | 2 ++ src/Types/ImagePsd.php | 2 ++ src/Types/ImageSvg.php | 2 ++ src/Types/ImageTiff.php | 2 ++ src/Types/ImageWebp.php | 2 ++ src/Types/TextPlain.php | 2 ++ src/Types/VideoMpeg.php | 2 ++ src/Types/VideoXmatroska.php | 2 ++ src/Types/VideoXmsvideo.php | 2 ++ tests/AbstractBinaryTypeTest.php | 2 ++ tests/AbstractTypeTest.php | 2 ++ tests/ApplicationGzipTest.php | 2 ++ tests/ApplicationOggTest.php | 2 ++ tests/ApplicationPdfTest.php | 2 ++ tests/ApplicationRarTest.php | 2 ++ tests/ApplicationSqliteTest.php | 2 ++ tests/ApplicationTarTest.php | 2 ++ tests/ApplicationZipTest.php | 2 ++ tests/AudioFlacTest.php | 2 ++ tests/AudioMpegId3v2Test.php | 2 ++ tests/AudioMpegTest.php | 2 ++ tests/ImageAvifTest.php | 2 ++ tests/ImageBmpTest.php | 2 ++ tests/ImageGifTest.php | 2 ++ tests/ImageHeicTest.php | 2 ++ tests/ImageHeifTest.php | 2 ++ tests/ImageIcoTest.php | 2 ++ tests/ImageJpegTest.php | 2 ++ tests/ImagePngTest.php | 2 ++ tests/ImagePsdTest.php | 2 ++ tests/ImageSvgTest.php | 2 ++ tests/ImageTiffTest.php | 2 ++ tests/ImageWebpTest.php | 2 ++ tests/MimeSnifferTest.php | 2 ++ tests/VideoMpegTest.php | 2 ++ tests/VideoXmatroskaTest.php | 2 ++ tests/VideoXmsvideoTest.php | 2 ++ 58 files changed, 116 insertions(+) diff --git a/src/AbstractBinaryType.php b/src/AbstractBinaryType.php index 3cad5d5..020c1f7 100644 --- a/src/AbstractBinaryType.php +++ b/src/AbstractBinaryType.php @@ -1,5 +1,7 @@