Skip to content

Commit 3c7d3fd

Browse files
committed
Update README and fix code style
1 parent ecda657 commit 3c7d3fd

11 files changed

+5
-16
lines changed

README.MD

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
[![Latest Stable Version](https://poser.pugx.org/platine-php/filesystem/v)](https://packagist.org/packages/platine-php/filesystem)
66
[![Latest Unstable Version](https://poser.pugx.org/platine-php/filesystem/v/unstable)](https://packagist.org/packages/platine-php/filesystem)
77
[![Total Downloads](https://poser.pugx.org/platine-php/filesystem/downloads)](https://packagist.org/packages/platine-php/filesystem)
8-
[![License](https://poser.pugx.org/platine-php/filesystem/license)](https://packagist.org/packages/platine-php/filesystem)
9-
[![Build Status](https://img.shields.io/travis/com/platine-php/filesystem?style=flat-square)](https://travis-ci.com/platine-php/filesystem)
8+
[![License](https://poser.pugx.org/platine-php/filesystem/license)](https://packagist.org/packages/platine-php/filesystem)
109
[![Quality Score](https://img.shields.io/scrutinizer/g/platine-php/filesystem.svg?style=flat-square)](https://scrutinizer-ci.com/g/platine-php/filesystem)
11-
[![Maintainability](https://api.codeclimate.com/v1/badges/971999fe8d3bae9b16f6/maintainability)](https://codeclimate.com/github/platine-php/filesystem/maintainability)
12-
[![Test Coverage](https://api.codeclimate.com/v1/badges/971999fe8d3bae9b16f6/test_coverage)](https://codeclimate.com/github/platine-php/filesystem/test_coverage)
10+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/1a791203238c45539178f1992285933c)](https://app.codacy.com/gh/platine-php/filesystem/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
11+
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/1a791203238c45539178f1992285933c)](https://app.codacy.com/gh/platine-php/filesystem/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
1312

1413
### Requirements
1514
- **PHP >= 7.4**, **PHP 8**
@@ -23,5 +22,5 @@ composer require platine-php/filesystem
2322
### License
2423
MIT License See [LICENSE.MD](LICENSE.MD)
2524

26-
### Documentation
27-
Coming soon, be patient
25+
### Resources
26+
- [Documentation](https://docs.platine-php.com/packages/filesystem)

src/Adapter/AdapterInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
*/
5757
interface AdapterInterface
5858
{
59-
6059
/**
6160
* Return the instance of file or directory
6261
* @param string $path

src/Adapter/Local/AbstractLocal.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
*/
6060
abstract class AbstractLocal implements FilesystemInterface
6161
{
62-
6362
/**
6463
* The adapter instance
6564
* @var AdapterInterface

src/Adapter/Local/Directory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
*/
5959
class Directory extends AbstractLocal implements DirectoryInterface
6060
{
61-
6261
/**
6362
* {@inheritdoc}
6463
*/

src/Adapter/Local/File.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
*/
5757
class File extends AbstractLocal implements FileInterface
5858
{
59-
6059
/**
6160
* {@inheritdoc}
6261
*/

src/Adapter/Local/LocalAdapter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
*/
6060
class LocalAdapter implements AdapterInterface
6161
{
62-
6362
/**
6463
* The root directory
6564
* @var string

src/DirectoryInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
*/
5454
interface DirectoryInterface extends FilesystemInterface
5555
{
56-
5756
/**
5857
* Filter list for directory read
5958
*/

src/FileInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
*/
5454
interface FileInterface extends FilesystemInterface
5555
{
56-
5756
/**
5857
* Create new file
5958
* @param string $path

src/Filesystem.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
*/
5757
class Filesystem
5858
{
59-
6059
/**
6160
* The adapter instance
6261
* @var AdapterInterface

src/FilesystemInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
*/
5656
interface FilesystemInterface
5757
{
58-
5958
/**
6059
* Whether the file system is a file
6160
* @return bool

0 commit comments

Comments
 (0)