mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-12-22 05:12:40 +00:00
added code sample and updated readme
This commit is contained in:
parent
05938253bb
commit
9e1fd68cc0
19
README.md
19
README.md
@ -5,8 +5,8 @@
|
|||||||
![GitHub](https://img.shields.io/github/license/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub](https://img.shields.io/github/license/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub forks](https://img.shields.io/github/forks/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub forks](https://img.shields.io/github/forks/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub issues](https://img.shields.io/github/issues/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub issues](https://img.shields.io/github/issues/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub commit activity the past week, 4 weeks, year](https://img.shields.io/github/commit-activity/w/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub commit activity the past week, 4 weeks, year](https://img.shields.io/github/commit-activity/w/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub last commit](https://img.shields.io/github/last-commit/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub last commit](https://img.shields.io/github/last-commit/my-first-pr/hacktoberfest-2018.svg)
|
||||||
![GitHub top language](https://img.shields.io/github/languages/top/my-first-pr/hacktoberfest-2018.svg)
|
![GitHub top language](https://img.shields.io/github/languages/top/my-first-pr/hacktoberfest-2018.svg)
|
||||||
@ -27,19 +27,29 @@ Start adding your names here:
|
|||||||
- My hobbies include:
|
- My hobbies include:
|
||||||
- Coding
|
- Coding
|
||||||
- Gaming
|
- Gaming
|
||||||
- ~~Having a social life~~
|
- ~~Having a social life~~
|
||||||
[![github-alt][github-img]](https://github.com/BenTechy66)
|
[![github-alt][github-img]](https://github.com/BenTechy66)
|
||||||
|
|
||||||
### Karen Geerts
|
### Karen Geerts
|
||||||
- I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer.
|
- I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer.
|
||||||
- [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters)
|
- [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters)
|
||||||
[![github-alt][github-img]](https://github.com/karengeerts)
|
[![github-alt][github-img]](https://github.com/karengeerts)
|
||||||
|
|
||||||
### Luke Oliff
|
### Luke Oliff
|
||||||
- Technical Writer working for @auth0
|
- Technical Writer working for @auth0
|
||||||
- [![twitter-alt][twitter-img]](https://twitter.com/mroliff)
|
- [![twitter-alt][twitter-img]](https://twitter.com/mroliff)
|
||||||
[![github-alt][github-img]](https://github.com/lukeoliff)
|
[![github-alt][github-img]](https://github.com/lukeoliff)
|
||||||
|
|
||||||
|
### rahman95
|
||||||
|
- Software Developer born in Germany raised in the UK. 🇩🇪 🇬🇧
|
||||||
|
- Hobbies include:
|
||||||
|
- Coding
|
||||||
|
- Tinkering
|
||||||
|
- Photography
|
||||||
|
- Gastronomy
|
||||||
|
- [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus)
|
||||||
|
[![github-alt][github-img]](https://github.com/rahman95)
|
||||||
|
|
||||||
### Example Profile
|
### Example Profile
|
||||||
- I'm an example that you can copy, if you want :)
|
- I'm an example that you can copy, if you want :)
|
||||||
- I work for...
|
- I work for...
|
||||||
@ -51,6 +61,7 @@ Start adding your names here:
|
|||||||
[![dribbble-alt][dribbble-img]](https://dribbble.com/example)
|
[![dribbble-alt][dribbble-img]](https://dribbble.com/example)
|
||||||
[![github-alt][github-img]](https://github.com/example)
|
[![github-alt][github-img]](https://github.com/example)
|
||||||
|
|
||||||
|
|
||||||
## How to Contribute
|
## How to Contribute
|
||||||
|
|
||||||
Please read our [contributing](CONTRIBUTING.md) guidelines before making your pull request.
|
Please read our [contributing](CONTRIBUTING.md) guidelines before making your pull request.
|
||||||
|
19
code/rahman95.php
Normal file
19
code/rahman95.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class HelloWorld
|
||||||
|
{
|
||||||
|
protected $name;
|
||||||
|
|
||||||
|
public function __construct(string $name)
|
||||||
|
{
|
||||||
|
$this->name = $name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function sayHelloWorld()
|
||||||
|
{
|
||||||
|
return "Hello World from {$this->name} 👋";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$class = new HelloWorld('rahman95');
|
||||||
|
echo $class->sayHelloWorld();
|
Loading…
Reference in New Issue
Block a user