-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9b442f
commit 6c2bee0
Showing
9 changed files
with
450 additions
and
158 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: Администратор | ||
* Date: 04.04.14 | ||
* Time: 22:40 | ||
*/ | ||
|
||
namespace User\Entity; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
/** @ORM\Entity */ | ||
class Student { | ||
/** | ||
* @ORM\Id | ||
* @ORM\GeneratedValue(strategy="AUTO") | ||
* @ORM\Column(type="integer") | ||
*/ | ||
protected $id; | ||
|
||
/** @ORM\Column(type="string") */ | ||
protected $name; | ||
|
||
/** @ORM\Column(type="string") */ | ||
protected $email; | ||
|
||
/** @ORM\Column(type="integer") */ | ||
protected $levelLanguage; | ||
|
||
/** @ORM\Column(type="integer") */ | ||
protected $phone; | ||
|
||
/** @ORM\Column(type="blob") */ | ||
protected $photo; | ||
|
||
/** | ||
* set id | ||
* @param $id | ||
* @return $this | ||
*/ | ||
public function setId($id) | ||
{ | ||
$this->id = $id; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get id | ||
* @return mixed | ||
*/ | ||
public function getId() | ||
{ | ||
return $this->id; | ||
} | ||
|
||
/** | ||
* set name | ||
* @param $name | ||
* @return $this | ||
*/ | ||
public function setName($name) | ||
{ | ||
$this->name = $name; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get name | ||
* @return mixed | ||
*/ | ||
public function getName() | ||
{ | ||
return $this->name; | ||
} | ||
|
||
/** | ||
* set email | ||
* @param $email | ||
* @return $this | ||
*/ | ||
public function setEmail($email) | ||
{ | ||
$this->email = $email; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get email | ||
* @return mixed | ||
*/ | ||
public function getEmail() | ||
{ | ||
return $this->email; | ||
} | ||
|
||
/** | ||
* set levelLanguage | ||
* @param $levelLanguage | ||
* @return $this | ||
*/ | ||
public function setLevelLanguage($levelLanguage) | ||
{ | ||
$this->levelLanguage = $levelLanguage; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get levelLanguage | ||
* @return mixed | ||
*/ | ||
public function getLevelLanguage() | ||
{ | ||
return $this->levelLanguage; | ||
} | ||
|
||
/** | ||
* set phone | ||
* @param $phone | ||
* @return $this | ||
*/ | ||
public function setPhone($phone) | ||
{ | ||
$this->phone = $phone; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get phone | ||
* @return mixed | ||
*/ | ||
public function getPhone() | ||
{ | ||
return $this->phone; | ||
} | ||
|
||
/** | ||
* set photo | ||
* @param $photo | ||
* @return $this | ||
*/ | ||
public function setPhoto($photo) | ||
{ | ||
$this->photo = $photo; | ||
return $this; | ||
} | ||
|
||
/** | ||
* get photo | ||
* @return mixed | ||
*/ | ||
public function getPhoto() | ||
{ | ||
return $this->photo; | ||
} | ||
} |
Submodule hybridauth
updated
from 6d8947 to d89bbf
Submodule scn-social-auth
updated
from 846110 to a73796
Submodule zfc-user
updated
from 397ffe to 48c2f8