CareSet / DURC

DURC is reverse CRUD
MIT License
3 stars 2 forks source link

Auto-generated mutator functions can have functionally identical names #65

Closed seanccsmith closed 4 years ago

seanccsmith commented 4 years ago

Mutator functions auto-generated by DURC on fields with similar names can lead to those functions having names that confuse PHP. That is, it turns out PHP function names are not case-sensitive. We can get function names like this:

Screen Shot 2020-05-15 at 4 00 48 PM

that wind up throwing errors like this on installation:

Screen Shot 2020-05-15 at 3 31 56 PM

Possibly resolvable by only generating mutators for fields with relevant data types?

seanccsmith commented 4 years ago

No more mutators means this is no longer a problem. DURC now runs successfully.