<?php
class Education {
public string $area;
public string $institution;
public string $degree;
public string $status;
public function __construct(string $area, string $degree, string $institution, string $status) {
$this->area = $area;
$this->institution = $institution;
$this->degree = $degree;
$this->status = $status;
}
}
$gabriel = [
'age' => 21,
'location' => 'Brazil',
'currentJob' => 'Back-End Software Developer',
'education' => [
new Education('Computer Network', 'Technical', 'CEFET-MG', 'Graduated'),
new Education('Software Engineering', 'BS', 'PUC Minas', 'Enrolled')
]
];
var_dump($gabriel);
?>
-
PicPay
- Brazil
Pinned Loading
-
-
grafos
grafos PublicForked from DisciplinasProgramacao/projeto2-grupo4
Algoritmos de grafos implementados, percorridos, testados e modularizados.
Java
-
nondeterministic-polynomial-algorithms
nondeterministic-polynomial-algorithms PublicTrabalho focado em problemas intratáveis, tipicamente pertencente às classes NP.
Java
-
usebruno/bruno
usebruno/bruno PublicOpensource IDE For Exploring and Testing Api's (lightweight alternative to postman/insomnia)
-
filamentphp/filament
filamentphp/filament PublicA collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
-
js-chat-app
js-chat-app PublicA real time Chat aplication built in React, Node and Websockets (Socket.io)
JavaScript 2
If the problem persists, check the GitHub status page or contact support.