xmlsquad / gsheet-to-xml

Given the url of a Google Sheet, this Symfony Console command fetches the Google Sheet and outputs it in the form of Xml.
Apache License 2.0
2 stars 1 forks source link

Convert `AbstractGSheetToXmlCommand` into just `AbstractGSheetProcessingCommand` #30

Closed forikal-uk closed 5 years ago

forikal-uk commented 5 years ago

Goal

See issue summary

Why

Because I want to re-use a lot of the logic in my own command which does another type of process (validation) on the contents of a gsheet.

How

forikal-uk commented 5 years ago

Rename

Done

forikal-uk commented 5 years ago

Move

Change the namespace from

XmlSquad\GsheetXml\Command

to

XmlSquad\Library\Command

and usages from

from

XmlSquad\GsheetXml\Command\AbstractGSheetProcessingCommand

to

XmlSquad\Library\Command\AbstractGSheetProcessingCommand

Done.

forikal-uk commented 5 years ago

Done.