Skip to content

Commit 7c1adb5

Browse files
committed
general cleanups
1 parent 92fc74e commit 7c1adb5

File tree

4 files changed

+32
-48
lines changed

4 files changed

+32
-48
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ You can check the message in the notification itself to know what went wrong. Or
115115
error has been logged to a file named `app.YYYYMMDD.log`.
116116

117117
If everything went ok, you should see the backend shows up in the same page. You can then go to the Tasks page and click
118-
on `Qeueu Task`, for first time import we recommand letting
118+
on `Queue Task`, for first time import we recommend letting
119119
the task run in the background, as it might take a while to import all the data.
120120

121121
Once you have done all for your backends, You should go back again to `Tasks` page and enable the `Import` and `Export`
@@ -134,7 +134,7 @@ After starting the container you should start adding your backends and to do so
134134
> [!NOTE]
135135
> to get your plex token, please
136136
> visit [this plex page](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/) to
137-
> know how to extract your plex token. For jellyfin & emby. Go to Dashboard > Advanced > API keys > then create new api
137+
> know how to extract your plex token. For jellyfin & emby. Go to Dashboard > Advanced > API keys > then create new API
138138
> keys.
139139

140140
```bash

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"ramsey/uuid": "^4.7.6"
4848
},
4949
"suggest": {
50-
"ext-sockets": "For UDP commincations."
50+
"ext-sockets": "For UDP communications."
5151
},
5252
"require-dev": {
5353
"roave/security-advisories": "dev-latest",

composer.lock

+24-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

psalm.xml.dist

+5-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0"?>
2-
<psalm errorLevel="2" resolveFromConfigFile="true" hideExternalErrors="true" ignoreInternalFunctionFalseReturn="false"
3-
autoloader="./pre_init.php">
2+
<psalm errorLevel="4" resolveFromConfigFile="true" hideExternalErrors="true" ignoreInternalFunctionFalseReturn="false" autoloader="./pre_init.php">
43
<projectFiles>
54
<directory name="."/>
65
<ignoreFiles allowMissingFiles="true">
@@ -9,30 +8,13 @@
98
<directory name="assets"/>
109
<directory name="frontend"/>
1110
<directory name="docker"/>
12-
<directory name="public"/>
1311
<directory name="data"/>
12+
<directory name="bin"/>
1413
</ignoreFiles>
1514
</projectFiles>
15+
<extrasFiles>
16+
<file name="./.phpstorm.meta.php"/>
17+
</extrasFiles>
1618
<issueHandlers>
17-
<TypeDoesNotContainType errorLevel="info"/>
18-
<PossiblyNullArgument errorLevel="info"/>
19-
<PossiblyNullReference errorLevel="info"/>
20-
<PossiblyInvalidArgument errorLevel="info"/>
21-
<PossiblyNullPropertyFetch errorLevel="info"/>
22-
<MissingClosureParamType errorLevel="info"/>
23-
<RedundantCondition errorLevel="info"/>
24-
<MissingParamType errorLevel="info"/>
25-
<PossiblyInvalidMethodCall errorLevel="info"/>
26-
<DocblockTypeContradiction errorLevel="info"/>
27-
<PropertyNotSetInConstructor errorLevel="info"/>
28-
<RedundantConditionGivenDocblockType errorLevel="info"/>
29-
<PossiblyNullArrayOffset errorLevel="info"/>
30-
<MissingFile errorLevel="info"/>
31-
<DuplicateFunction errorLevel="info"/>
32-
<DuplicateClass errorLevel="info"/>
33-
<UnresolvableInclude errorLevel="info"/>
3419
</issueHandlers>
35-
<stubs>
36-
<file name="./.phpstorm.meta.php"/>
37-
</stubs>
3820
</psalm>

0 commit comments

Comments
 (0)