We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420de4f commit d903790Copy full SHA for d903790
src/Former/MethodDispatcher.php
@@ -223,18 +223,18 @@ protected function getClassFromMethod($method)
223
case 'submit':
224
case 'link':
225
case 'reset':
226
- $class = 'Button';
+ $class = Former::FIELDSPACE.'Button';
227
break;
228
229
case 'multiselect':
230
- $class = 'Select';
+ $class = Former::FIELDSPACE.'Select';
231
232
233
default:
234
- $class = 'Input';
+ $class = Former::FIELDSPACE.'Input';
235
236
}
237
238
- return $this->repositories[0].$class;
+ return $class;
239
240
0 commit comments