1 | <?php |
---|
2 | /* |
---|
3 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
---|
4 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
---|
5 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
---|
6 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
---|
7 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
---|
8 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
---|
9 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
---|
10 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
---|
11 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
---|
12 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
---|
13 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
14 | * |
---|
15 | * This software consists of voluntary contributions made by many individuals |
---|
16 | * and is licensed under the LGPL. For more information, see |
---|
17 | * <http://www.doctrine-project.org>. |
---|
18 | */ |
---|
19 | |
---|
20 | namespace Doctrine\DBAL\Schema; |
---|
21 | |
---|
22 | /** |
---|
23 | * Configuration for a Schema |
---|
24 | * |
---|
25 | * @license http://www.opensource.org/licenses/lgpl-license.php LGPL |
---|
26 | * @link www.doctrine-project.org |
---|
27 | * @since 2.0 |
---|
28 | * @author Benjamin Eberlei <kontakt@beberlei.de> |
---|
29 | */ |
---|
30 | class SchemaConfig |
---|
31 | { |
---|
32 | /** |
---|
33 | * @var bool |
---|
34 | */ |
---|
35 | protected $_hasExplicitForeignKeyIndexes = false; |
---|
36 | |
---|
37 | /** |
---|
38 | * @var int |
---|
39 | */ |
---|
40 | protected $_maxIdentifierLength = 63; |
---|
41 | |
---|
42 | /** |
---|
43 | * @var string |
---|
44 | */ |
---|
45 | protected $_name; |
---|
46 | |
---|
47 | /** |
---|
48 | * @return bool |
---|
49 | */ |
---|
50 | public function hasExplicitForeignKeyIndexes() |
---|
51 | { |
---|
52 | return $this->_hasExplicitForeignKeyIndexes; |
---|
53 | } |
---|
54 | |
---|
55 | /** |
---|
56 | * @param bool $flag |
---|
57 | */ |
---|
58 | public function setExplicitForeignKeyIndexes($flag) |
---|
59 | { |
---|
60 | $this->_hasExplicitForeignKeyIndexes = (bool)$flag; |
---|
61 | } |
---|
62 | |
---|
63 | /** |
---|
64 | * @param int $length |
---|
65 | */ |
---|
66 | public function setMaxIdentifierLength($length) |
---|
67 | { |
---|
68 | $this->_maxIdentifierLength = (int)$length; |
---|
69 | } |
---|
70 | |
---|
71 | /** |
---|
72 | * @return int |
---|
73 | */ |
---|
74 | public function getMaxIdentifierLength() |
---|
75 | { |
---|
76 | return $this->_maxIdentifierLength; |
---|
77 | } |
---|
78 | |
---|
79 | /** |
---|
80 | * Get default namespace of schema objects. |
---|
81 | * |
---|
82 | * @return string |
---|
83 | */ |
---|
84 | public function getName() |
---|
85 | { |
---|
86 | return $this->_name; |
---|
87 | } |
---|
88 | |
---|
89 | /** |
---|
90 | * set default namespace name of schema objects. |
---|
91 | * |
---|
92 | * @param _name the value to set. |
---|
93 | */ |
---|
94 | public function setName($name) |
---|
95 | { |
---|
96 | $this->_name = $name; |
---|
97 | } |
---|
98 | } |
---|