Skip to content

Commit

Permalink
Format code by the latest cs-fixer. (#6617)
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo authored Mar 23, 2024
1 parent ab8388b commit b9769bd
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View;

class ConfigProvider
Expand Down
1 change: 1 addition & 0 deletions src/Engine/BladeEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

use duncan3dc\Laravel\BladeInstance;
Expand Down
1 change: 1 addition & 0 deletions src/Engine/EngineInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

interface EngineInterface
Expand Down
1 change: 1 addition & 0 deletions src/Engine/NoneEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

class NoneEngine implements EngineInterface
Expand Down
1 change: 1 addition & 0 deletions src/Engine/PlatesEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

use League\Plates\Engine;
Expand Down
1 change: 1 addition & 0 deletions src/Engine/SmartyEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

use Smarty;
Expand Down
1 change: 1 addition & 0 deletions src/Engine/ThinkEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

use think\Template;
Expand Down
1 change: 1 addition & 0 deletions src/Engine/TwigEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Engine;

use Twig\Environment;
Expand Down
1 change: 1 addition & 0 deletions src/Exception/EngineNotFindException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Exception;

use RuntimeException;
Expand Down
1 change: 1 addition & 0 deletions src/Exception/RenderException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View\Exception;

use RuntimeException;
Expand Down
1 change: 1 addition & 0 deletions src/Mode.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View;

class Mode
Expand Down
1 change: 1 addition & 0 deletions src/Render.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View;

use Hyperf\Context\ResponseContext;
Expand Down
1 change: 1 addition & 0 deletions src/RenderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace Hyperf\View;

use Psr\Http\Message\ResponseInterface;
Expand Down
1 change: 1 addition & 0 deletions tests/NoneTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\View\Engine\NoneEngine;
Expand Down
1 change: 1 addition & 0 deletions tests/PlatesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\View\Engine\PlatesEngine;
Expand Down
1 change: 1 addition & 0 deletions tests/RenderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\Config\Config;
Expand Down
1 change: 1 addition & 0 deletions tests/SmartyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\View\Engine\SmartyEngine;
Expand Down
1 change: 1 addition & 0 deletions tests/ThinkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\View\Engine\ThinkEngine;
Expand Down
1 change: 1 addition & 0 deletions tests/TwigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/

namespace HyperfTest\View;

use Hyperf\View\Engine\TwigEngine;
Expand Down

0 comments on commit b9769bd

Please sign in to comment.