Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/cookbook/configuring-webservers/iis.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@ Use the following content:
</configuration>
```

Also, the following list of Microsoft's official resources could be useful to configure PHP on IIS:

1. [How to set up your first IIS website](https://support.microsoft.com/en-us/help/323972/how-to-set-up-your-first-iis-web-site)
2. [Configure a PHP Website on IIS](https://docs.microsoft.com/en-us/iis/application-frameworks/scenario-build-a-php-website-on-iis/configure-a-php-website-on-iis)
Also, [IIS documentation](https://learn.microsoft.com/en-us/iis/) could be useful to configure PHP on IIS.
2 changes: 1 addition & 1 deletion src/cookbook/configuring-webservers/nginx.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Configuring web servers: Nginx

To use [Nginx](https://wiki.nginx.org/), install PHP as an [FPM SAPI](https://secure.php.net/install.fpm).
To use [Nginx](https:/nginx.org/), install PHP as an [FPM SAPI](https://secure.php.net/install.fpm).
Use the following Nginx configuration, replacing `path/to/app/public` with the actual path for
`app/public` and `mysite.test` with the actual hostname to serve.

Expand Down
4 changes: 2 additions & 2 deletions src/internals/010-code-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Method comment is necessary except it adds nothing to what method name and signa

Class comment should describe the purpose of the class.

[See PHPDoc](https://github.com/yiisoft/docs/blob/master/014-docs.md#phpdoc).
See [PHPDoc](014-docs.md#phpdoc).

## Formatting

Expand Down Expand Up @@ -107,7 +107,7 @@ Constants, properties and methods should be private by default.

### Composition over inheritance

Prefer [composition to inheritance](guide/en/concept/di-container.md).
Prefer [composition to inheritance](../guide/concept/di-container.md).

### Property, constant and method order

Expand Down