Category Journey at rtCamp

rtCamp notes, day 8/undefined

Started working on changing code base of PHP-XKCD assignment to Object Oriented. Came to learn a lot of practical things. Classes with namespaces are automatically included if the namespace is perfectly organised with the directory structure. Function chaining can call…

rtCamp notes, day 5/undefined

PHPCS PHPCS is a tool that helps detect violations of pre-defined coding standards. It also includes an additional tool that can automatically correct those violations. What are coding standards? Coding Standards refers to a set of rules or guidelines consisting of…

rtCamp notes, day 4/undefined

Git commands git init -> To initiate a new git repository. git config -> To config the user.name and user.email git branch <branch_name> -> To create a new branch git checkout <branch/commit> -> To switch to specified commit/branch git clone…