1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +02:00

[ticket/13740] Fix CS and docblocks

PHPBB3-13740
This commit is contained in:
Mate Bartus
2015-07-21 14:42:15 +02:00
parent 0488c49116
commit b2b9fb1df2
10 changed files with 36 additions and 62 deletions

View File

@@ -14,7 +14,7 @@
namespace phpbb\install\exception;
/**
* This exception should be thrown when
* Thrown when the container cannot be built
*/
class cannot_build_container_exception extends installer_exception
{

View File

@@ -14,7 +14,7 @@
namespace phpbb\install\exception;
/**
* Exception for the event when installer config is not writable to disk
* Thrown when installer config is not writable to disk
*/
class installer_config_not_writable_exception extends installer_exception
{

View File

@@ -14,7 +14,7 @@
namespace phpbb\install\exception;
/**
* This exception should be thrown when
* Thrown when an unavailable DBMS has been selected
*/
class invalid_dbms_exception extends installer_exception
{

View File

@@ -1,19 +0,0 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\install\exception;
class invalid_service_name_exception extends installer_exception
{
}

View File

@@ -13,6 +13,9 @@
namespace phpbb\install\exception;
/**
* Thrown when the installer is out of memory or time
*/
class resource_limit_reached_exception extends installer_exception
{