@@ -65,11 +65,11 @@ public function offsetExists($offset)
65
65
*
66
66
* @param mixed $offset
67
67
*
68
- * @throws \ BadMethodCallException
68
+ * @throws BadMethodCallException
69
69
*/
70
70
public function offsetGet ($ offset )
71
71
{
72
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
72
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
73
73
}
74
74
75
75
/**
@@ -80,11 +80,11 @@ public function offsetGet($offset)
80
80
* @param mixed $offset
81
81
* @param mixed $value
82
82
*
83
- * @throws \ BadMethodCallException
83
+ * @throws BadMethodCallException
84
84
*/
85
85
public function offsetSet ($ offset , $ value )
86
86
{
87
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
87
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
88
88
}
89
89
90
90
/**
@@ -94,11 +94,11 @@ public function offsetSet($offset, $value)
94
94
*
95
95
* @param mixed $offset
96
96
*
97
- * @throws \ BadMethodCallException
97
+ * @throws BadMethodCallException
98
98
*/
99
99
public function offsetUnset ($ offset )
100
100
{
101
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
101
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
102
102
}
103
103
104
104
/**
@@ -126,11 +126,11 @@ public function getParent()
126
126
* @param null $type
127
127
* @param array $options
128
128
*
129
- * @throws \ BadMethodCallException
129
+ * @throws BadMethodCallException
130
130
*/
131
131
public function add ($ child , $ type = null , array $ options = array ())
132
132
{
133
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
133
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
134
134
}
135
135
136
136
/**
@@ -140,11 +140,11 @@ public function add($child, $type = null, array $options = array())
140
140
*
141
141
* @param string $name
142
142
*
143
- * @throws \ BadMethodCallException
143
+ * @throws BadMethodCallException
144
144
*/
145
145
public function get ($ name )
146
146
{
147
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
147
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
148
148
}
149
149
150
150
/**
@@ -166,11 +166,11 @@ public function has($name)
166
166
*
167
167
* @param string $name
168
168
*
169
- * @throws \ BadMethodCallException
169
+ * @throws BadMethodCallException
170
170
*/
171
171
public function remove ($ name )
172
172
{
173
- throw new \ BadMethodCallException ('Buttons cannot have children. ' );
173
+ throw new BadMethodCallException ('Buttons cannot have children. ' );
174
174
}
175
175
176
176
/**
@@ -196,11 +196,11 @@ public function getErrors()
196
196
*
197
197
* @param string $modelData
198
198
*
199
- * @throws \ BadMethodCallException
199
+ * @throws BadMethodCallException
200
200
*/
201
201
public function setData ($ modelData )
202
202
{
203
- throw new \ BadMethodCallException ('Buttons cannot have data. ' );
203
+ throw new BadMethodCallException ('Buttons cannot have data. ' );
204
204
}
205
205
206
206
/**
@@ -288,11 +288,11 @@ public function getPropertyPath()
288
288
*
289
289
* @param FormError $error
290
290
*
291
- * @throws \ BadMethodCallException
291
+ * @throws BadMethodCallException
292
292
*/
293
293
public function addError (FormError $ error )
294
294
{
295
- throw new \ BadMethodCallException ('Buttons cannot have errors. ' );
295
+ throw new BadMethodCallException ('Buttons cannot have errors. ' );
296
296
}
297
297
298
298
/**
0 commit comments